-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc
43 lines (43 loc) · 1002 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
{
"env": {
"browser": true
},
"rules": {
"quotes": 0,
"strict": 0,
"eol-last": 0,
"no-console": 1,
"block-scoped-var": 2,
"quote-props": [2, "consistent-as-needed"],
"no-else-return": 2,
"no-eq-null": 1,
"no-floating-decimal": 1,
"no-self-compare": 1,
"no-void": 1,
"radix": 2,
"vars-on-top": 2,
"wrap-iife": [2, "inside"],
"no-undefined": 2,
"brace-style": [2, "1tbs"],
"comma-style": [2, "last"],
"no-lonely-if": 2,
"no-multiple-empty-lines": 2,
"no-nested-ternary": 2,
"operator-assignment": [2, "always"],
"space-after-keywords": [2, "always"],
"space-before-blocks": [2, "always"],
"space-before-function-paren": [2, {
"anonymous": "never",
"named": "always"
}],
"object-curly-spacing": [2, "never"],
"array-bracket-spacing": [2, "never"],
"computed-property-spacing": [2, "never"],
"space-in-parens": [2, "never"],
"spaced-comment": [2, "always"],
"indent": [2, "tab"],
"space-unary-ops": [2, {
"words": true
}]
}
}