-
Notifications
You must be signed in to change notification settings - Fork 1
/
.eslintrc
45 lines (45 loc) · 1.26 KB
/
.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
{
"env": {
"node": true,
"es7": true
},
"parserOptions": {
"sourceType": "module"
},
"rules": {
"arrow-parens": [ 2 ],
"brace-style": 2,
"camelcase": 0,
"comma-dangle": 0,
"comma-spacing": [ 2, { "after": true } ],
"curly": [ 2, "all" ],
"indent": [ 2, 2, { "SwitchCase": 1 } ],
"key-spacing": [ 2, { "beforeColon": false, "afterColon": true } ],
"keyword-spacing": [ 2, { "overrides": { "else": { "before": true } } } ],
"linebreak-style": [ 2, "unix" ],
"max-len": 0,
"no-else-return": 0,
"no-mixed-spaces-and-tabs": 2,
"no-multi-spaces": 2,
"no-multiple-empty-lines": 2,
"no-template-curly-in-string": 2,
"no-trailing-spaces": 2,
"no-undef": 2,
"no-unused-vars": 2,
"no-var": 1,
"no-with": 2,
"one-var": 0,
"padded-blocks": [ 2, "never" ],
"prefer-arrow-callback": 2,
"prefer-destructuring": [ 2, { "array": false, "object": true } ],
"prefer-template": 2,
"quote-props": [ 2, "as-needed" ],
"quotes": [ 2, "single" ],
"semi": [ 2, "always" ],
"space-before-blocks": [ 2, "always" ],
"space-in-parens": [ 2, "never" ],
"space-infix-ops": 2,
"space-unary-ops": [ 2, { "nonwords": false } ],
"spaced-comment": [ 2, "always" ]
}
}