-
Notifications
You must be signed in to change notification settings - Fork 1
/
.eslintrc.json
37 lines (37 loc) · 964 Bytes
/
.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
{
"extends": "standard",
"installedESLint": true,
"plugins": [
"standard",
"promise"
],
"parserOptions": {
"ecmaVersion": 2017
},
"globals": {
"$": true
},
"env": {
"browser": true,
"node": true
},
"rules": {
"quotes": ["error", "single"],
"prefer-arrow-callback": 2,
"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,
"keyword-spacing": ["error", { "before": false, "after": false }],
"space-before-function-paren": 0,
"space-before-blocks": ["error", "never"],
"camelcase": 0,
"handle-callback-err": ["error", "none"],
"object-curly-spacing": ["error", "never"]
}
}