-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy path.eslintrc
58 lines (57 loc) · 1.65 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
{
"root": true,
"extends": "eslint:recommended",
"rules": {
"semi": [2, "always"],
"indent": [2, 4, { "SwitchCase": 1 }],
"no-unexpected-multiline": 2,
"no-alert": 2,
"dot-location": [2, "property"],
"eqeqeq": 2,
"consistent-return": 2,
"no-eval": 2,
"no-floating-decimal": 2,
"no-implied-eval": 2,
"no-lone-blocks": 2,
"no-loop-func": 2,
"no-multi-spaces": 2,
"no-new-wrappers": 2,
"no-script-url": 2,
"no-self-compare": 2,
"no-sequences": 2,
"no-throw-literal": 2,
"no-useless-call": 2,
"no-useless-concat": 2,
"no-void": 1,
"no-warning-comments": [1, { "terms": ["todo", "fixme"], "location": "start" }],
"no-with": 2,
"radix": 2,
"strict": [2, "global"],
"no-shadow-restricted-names": 2,
"no-undef-init": 2,
"no-undef": 2,
"array-bracket-spacing": [2, "never"],
"block-spacing": [2, "always"],
"brace-style": [2, "stroustrup", { "allowSingleLine": true }],
"camelcase": [2, {"properties": "always"}],
"comma-spacing": [2, {"before": false, "after": true}],
"comma-style": [2, "last"],
"computed-property-spacing": [2, "never"],
"eol-last": 2,
"key-spacing": [2, {"beforeColon": false, "afterColon": true}],
"linebreak-style": [2, "unix"],
"new-cap": 1,
"new-parens": 2,
"no-array-constructor": 2,
"no-bitwise": 2,
"no-multiple-empty-lines": [2, {"max": 2, "maxEOF": 1}],
"no-trailing-spaces": 2,
"quotes": [2, "single"],
"semi-spacing": 2,
"keyword-spacing": 2,
"space-before-blocks": 2,
"space-before-function-paren": 2,
"space-infix-ops": 2,
"space-unary-ops": 2
}
}