|
6 | 6 | "rules": {
|
7 | 7 | "array-bracket-spacing": [ 2, "always" ],
|
8 | 8 | "block-scoped-var": 2,
|
9 |
| - "brace-style": [ 2, "1tbs", { allowSingleLine: true } ], |
| 9 | + "brace-style": [ 2, "1tbs", { "allowSingleLine": true } ], |
10 | 10 | "comma-dangle": [ 2, "never" ],
|
11 | 11 | "comma-spacing": 2,
|
12 | 12 | "comma-style": 2,
|
13 |
| - "consistent-this": [ 2, self ], |
| 13 | + "consistent-this": [ 2, "self" ], |
14 | 14 | "consistent-return": 2,
|
15 | 15 | "curly": 2,
|
16 | 16 | "dot-notation": 2,
|
17 | 17 | "eol-last": 2,
|
18 | 18 | "eqeqeq": 2,
|
19 | 19 | "guard-for-in": 2,
|
20 | 20 | "handle-callback-err": 2,
|
21 |
| - "indent": [ 2, 2, { "VariableDeclarator": { "var": 2, "let": 2, "const": 3 } } ], |
22 | 21 | "max-depth": [ 1, 6 ],
|
23 | 22 | "max-nested-callbacks": [ 1, 4 ],
|
24 | 23 | "max-len": [ 2, 120, 1000 ],
|
|
39 | 38 | "no-div-regex": 2,
|
40 | 39 | "no-empty": 2,
|
41 | 40 | "no-empty-character-class": 2,
|
42 |
| - "no-empty-label": 2, |
43 | 41 | "no-else-return": 2,
|
44 | 42 | "no-eq-null": 2,
|
45 | 43 | "no-ex-assign": 2,
|
|
96 | 94 | "radix": 2,
|
97 | 95 | "semi": 2,
|
98 | 96 | "semi-spacing": [ 2, { "before": false, "after": true } ],
|
99 |
| - "space-after-keywords": [ 2, "always" ], |
| 97 | + "keyword-spacing": [ 2, { "before": true, "after": true } ], |
100 | 98 | "space-before-blocks": 2,
|
101 | 99 | "space-in-parens": [ 2, "never" ],
|
102 | 100 | "space-infix-ops": 2,
|
103 |
| - "space-return-throw-case": 2, |
104 | 101 | "space-unary-ops": 2,
|
105 | 102 | "spaced-comment": [ 2, "always", { "exceptions": [ "/" ] } ],
|
106 | 103 | "strict": [ 2, "global" ],
|
107 | 104 | "use-isnan": 2,
|
108 | 105 | "yoda": 2,
|
109 |
| - "valid-typeof": 2, |
| 106 | + "valid-typeof": 2 |
110 | 107 | }
|
111 | 108 | }
|
0 commit comments