Skip to content

Commit 13a231d

Browse files
committed
Add prettier
1 parent 9fd9c31 commit 13a231d

31 files changed

+1044
-1209
lines changed

.eslintignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
lib

.eslintrc.js

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
module.exports = {
2+
extends: ['standard', 'prettier'],
3+
plugins: ['prettier'],
4+
rules: {
5+
'prettier/prettier': [
6+
'error',
7+
{
8+
singleQuote: true,
9+
semi: false,
10+
},
11+
],
12+
},
13+
env: { mocha: true },
14+
}

0 commit comments

Comments
 (0)