-
Notifications
You must be signed in to change notification settings - Fork 28
/
.eslintrc
46 lines (46 loc) · 909 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
35
36
37
38
39
40
41
42
43
44
45
46
{
"env": {
"node": true,
"es6": true,
"mocha": true
},
"parserOptions": {
"ecmaVersion": 6
},
"rules": {
"indent": [
"error",
2,
{ "SwitchCase": 1 }
],
"no-underscore-dangle": "off",
"consistent-return": "off",
"no-cond-assign": "off",
"lines-around-comment": "off",
"arrow-body-style": "off",
"no-confusing-arrow": "off",
"class-methods-use-this": "off",
"newline-after-var": "off",
"no-invalid-this": "off",
"no-nested-ternary": "off",
"no-unused-vars": "off",
"eol-last": "off",
"quotes": [
"error",
"single"
],
"guard-for-in": "off",
"no-console": "off",
"no-undefined": "off",
"array-bracket-spacing": "off",
"no-unused-expressions": "off",
"func-style": [
"error",
"expression"
],
"comma-dangle": [
"error",
"never"
]
}
}