-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.eslintrc
34 lines (34 loc) · 848 Bytes
/
.eslintrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{
"parser": "babel-eslint",
"rules": {
"strict": 0,
"indent": [ 2, 2 ],
"semi": [ 2, "always" ],
"arrow-parens": 2,
"arrow-spacing": 1,
"comma-dangle": 0,
"constructor-super": 2,
"no-class-assign": 2,
"no-const-assign": 2,
"no-dupe-class-members": 2,
"no-this-before-super": 2,
"callback-return": 2,
"no-path-concat": 2,
"no-label-var": 2,
"no-shadow": 2,
"no-var": 0,
"no-use-before-define": 0,
"handle-callback-err": 1,
"prefer-spread": 1,
"prefer-arrow-callback": 1,
"prefer-template": 1,
"no-console": 0,
"vars-on-top": 0
},
"env": {
"es6": true,
"node": true,
"mocha": true
},
"extends": "eslint:recommended"
}