-
Notifications
You must be signed in to change notification settings - Fork 200
/
.eslintrc.json
43 lines (43 loc) · 1.14 KB
/
.eslintrc.json
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
{
"extends": "standard",
"plugins": [
"standard",
"promise",
"extra-rules"
],
"parserOptions": {
"ecmaVersion": 2017
},
"globals": {
"$": true
},
"env": {
"browser": true,
"node": true
},
"rules": {
"quotes": ["error", "single"],
"prefer-arrow-callback": [ "error", { "allowNamedFunctions": true } ],
"consistent-return": 2,
"no-var" : 2,
"new-cap" : 0,
"indent" : 0,
"no-else-return" : 1,
"semi" : [1, "always"],
"space-unary-ops" : 2,
"no-undef": 1,
"no-unused-vars": 1,
"extra-rules/no-commented-out-code": "warn",
"keyword-spacing": [
"error", {
"before": false, "after": false, "overrides": {
"const": { "after": true }
}
}],
"space-before-function-paren": 0,
"space-before-blocks": ["error", "never"],
"camelcase": 0,
"handle-callback-err": ["error", "none"],
"object-curly-spacing": ["error", "always"]
}
}