-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
.eslintrc
60 lines (60 loc) · 1.56 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"env": {
"browser": true,
"es6": true,
"node": true
},
"parserOptions": {
"ecmaVersion": 8,
"sourceType": "module"
},
"globals": {
"BASE_URL": true,
"BUILD_ENV": true
},
"rules": {
"arrow-parens": [ 2, "as-needed" ],
"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-debugger": 2,
"no-dupe-keys": 2,
"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": [
"error",
{
"vars": "all",
"args": "after-used",
"ignoreRestSiblings": true
}
],
"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" ]
}
}