|
1 | 1 | { |
2 | | - "ecmaFeatures": { |
3 | | - "modules": true, |
4 | | - "experimentalObjectRestSpread": true |
5 | | - }, |
6 | 2 | "env": { |
7 | 3 | "browser": false, |
8 | 4 | "es6": true, |
9 | 5 | "node": true, |
10 | 6 | "mocha": true |
11 | 7 | }, |
| 8 | + |
12 | 9 | "globals": { |
13 | 10 | "document": false, |
14 | 11 | "navigator": false, |
15 | 12 | "window": false |
16 | 13 | }, |
| 14 | + |
17 | 15 | "rules": { |
18 | 16 | "accessor-pairs": 2, |
19 | | - "arrow-spacing": [ |
20 | | - 2, |
21 | | - { |
22 | | - "before": true, |
23 | | - "after": true |
24 | | - } |
25 | | - ], |
26 | | - "block-spacing": [ |
27 | | - 2, |
28 | | - "always" |
29 | | - ], |
30 | | - "brace-style": [ |
31 | | - 2, |
32 | | - "1tbs", |
33 | | - { |
34 | | - "allowSingleLine": true |
35 | | - } |
36 | | - ], |
37 | | - "comma-dangle": [ |
38 | | - 2, |
39 | | - "never" |
40 | | - ], |
41 | | - "comma-spacing": [ |
42 | | - 2, |
43 | | - { |
44 | | - "before": false, |
45 | | - "after": true |
46 | | - } |
47 | | - ], |
48 | | - "comma-style": [ |
49 | | - 2, |
50 | | - "last" |
51 | | - ], |
| 17 | + "arrow-spacing": [2, { "before": true, "after": true }], |
| 18 | + "block-spacing": [2, "always"], |
| 19 | + "brace-style": [2, "1tbs", { "allowSingleLine": true }], |
| 20 | + "comma-dangle": [2, "never"], |
| 21 | + "comma-spacing": [2, { "before": false, "after": true }], |
| 22 | + "comma-style": [2, "last"], |
52 | 23 | "constructor-super": 2, |
53 | | - "curly": [ |
54 | | - 2, |
55 | | - "multi-line" |
56 | | - ], |
57 | | - "dot-location": [ |
58 | | - 2, |
59 | | - "property" |
60 | | - ], |
| 24 | + "curly": [2, "multi-line"], |
| 25 | + "dot-location": [2, "property"], |
61 | 26 | "eol-last": 2, |
62 | | - "eqeqeq": [ |
63 | | - 2, |
64 | | - "allow-null" |
65 | | - ], |
66 | | - "generator-star-spacing": [ |
67 | | - 2, |
68 | | - { |
69 | | - "before": true, |
70 | | - "after": true |
71 | | - } |
72 | | - ], |
73 | | - "handle-callback-err": [ |
74 | | - 2, |
75 | | - "^(err|error)$" |
76 | | - ], |
77 | | - "indent": [ |
78 | | - 2, |
79 | | - 2, |
80 | | - { |
81 | | - "SwitchCase": 1 |
82 | | - } |
83 | | - ], |
84 | | - "key-spacing": [ |
85 | | - 2, |
86 | | - { |
87 | | - "beforeColon": false, |
88 | | - "afterColon": true |
89 | | - } |
90 | | - ], |
91 | | - "keyword-spacing": [ |
92 | | - 2, |
93 | | - { |
94 | | - "before": true, |
95 | | - "after": true |
96 | | - } |
97 | | - ], |
98 | | - "new-cap": [ |
99 | | - 2, |
100 | | - { |
101 | | - "newIsCap": true, |
102 | | - "capIsNew": false |
103 | | - } |
104 | | - ], |
| 27 | + "eqeqeq": [2, "allow-null"], |
| 28 | + "generator-star-spacing": [2, { "before": true, "after": true }], |
| 29 | + "handle-callback-err": [2, "^(err|error)$" ], |
| 30 | + "indent": [2, 2, { "SwitchCase": 1 }], |
| 31 | + "key-spacing": [2, { "beforeColon": false, "afterColon": true }], |
| 32 | + "keyword-spacing": [2, { "before": true, "after": true }], |
| 33 | + "new-cap": [2, { "newIsCap": true, "capIsNew": false }], |
105 | 34 | "new-parens": 2, |
106 | 35 | "no-array-constructor": 2, |
107 | 36 | "no-caller": 2, |
|
121 | 50 | "no-extend-native": 2, |
122 | 51 | "no-extra-bind": 2, |
123 | 52 | "no-extra-boolean-cast": 2, |
124 | | - "no-extra-parens": [ |
125 | | - 2, |
126 | | - "functions" |
127 | | - ], |
| 53 | + "no-extra-parens": [2, "functions"], |
128 | 54 | "no-fallthrough": 2, |
129 | 55 | "no-floating-decimal": 2, |
130 | 56 | "no-func-assign": 2, |
131 | 57 | "no-implied-eval": 2, |
132 | | - "no-inner-declarations": [ |
133 | | - 2, |
134 | | - "functions" |
135 | | - ], |
| 58 | + "no-inner-declarations": [2, "functions"], |
136 | 59 | "no-invalid-regexp": 2, |
137 | 60 | "no-irregular-whitespace": 2, |
138 | 61 | "no-iterator": 2, |
|
142 | 65 | "no-mixed-spaces-and-tabs": 2, |
143 | 66 | "no-multi-spaces": 2, |
144 | 67 | "no-multi-str": 2, |
145 | | - "no-multiple-empty-lines": [ |
146 | | - 2, |
147 | | - { |
148 | | - "max": 1 |
149 | | - } |
150 | | - ], |
| 68 | + "no-multiple-empty-lines": [2, { "max": 1 }], |
151 | 69 | "no-native-reassign": 0, |
152 | 70 | "no-negated-in-lhs": 2, |
153 | 71 | "no-new": 2, |
|
173 | 91 | "no-undef": 2, |
174 | 92 | "no-undef-init": 2, |
175 | 93 | "no-unexpected-multiline": 2, |
176 | | - "no-unneeded-ternary": [ |
177 | | - 2, |
178 | | - { |
179 | | - "defaultAssignment": false |
180 | | - } |
181 | | - ], |
| 94 | + "no-unneeded-ternary": [2, { "defaultAssignment": false }], |
182 | 95 | "no-unreachable": 2, |
183 | | - "no-unused-vars": [ |
184 | | - 2, |
185 | | - { |
186 | | - "vars": "all", |
187 | | - "args": "none" |
188 | | - } |
189 | | - ], |
| 96 | + "no-unused-vars": [2, { "vars": "all", "args": "none" }], |
190 | 97 | "no-useless-call": 0, |
191 | 98 | "no-with": 2, |
192 | | - "one-var": [ |
193 | | - 0, |
194 | | - { |
195 | | - "initialized": "never" |
196 | | - } |
197 | | - ], |
198 | | - "operator-linebreak": [ |
199 | | - 0, |
200 | | - "after", |
201 | | - { |
202 | | - "overrides": { |
203 | | - "?": "before", |
204 | | - ":": "before" |
205 | | - } |
206 | | - } |
207 | | - ], |
208 | | - "padded-blocks": [ |
209 | | - 0, |
210 | | - "never" |
211 | | - ], |
212 | | - "quotes": [ |
213 | | - 2, |
214 | | - "single", |
215 | | - "avoid-escape" |
216 | | - ], |
| 99 | + "one-var": [0, { "initialized": "never" }], |
| 100 | + "operator-linebreak": [0, "after", { "overrides": { "?": "before", ":": "before" } }], |
| 101 | + "padded-blocks": [0, "never"], |
| 102 | + "quotes": [2, "single", "avoid-escape"], |
217 | 103 | "radix": 2, |
218 | | - "semi": [ |
219 | | - 2, |
220 | | - "always" |
221 | | - ], |
222 | | - "semi-spacing": [ |
223 | | - 2, |
224 | | - { |
225 | | - "before": false, |
226 | | - "after": true |
227 | | - } |
228 | | - ], |
229 | | - "space-before-blocks": [ |
230 | | - 2, |
231 | | - "always" |
232 | | - ], |
233 | | - "space-before-function-paren": [ |
234 | | - 2, |
235 | | - "never" |
236 | | - ], |
237 | | - "space-in-parens": [ |
238 | | - 2, |
239 | | - "never" |
240 | | - ], |
| 104 | + "semi": [2, "always"], |
| 105 | + "semi-spacing": [2, { "before": false, "after": true }], |
| 106 | + "space-before-blocks": [2, "always"], |
| 107 | + "space-before-function-paren": [2, "never"], |
| 108 | + "space-in-parens": [2, "never"], |
241 | 109 | "space-infix-ops": 2, |
242 | | - "space-unary-ops": [ |
243 | | - 2, |
244 | | - { |
245 | | - "words": true, |
246 | | - "nonwords": false |
247 | | - } |
248 | | - ], |
249 | | - "spaced-comment": [ |
250 | | - 0, |
251 | | - "always", |
252 | | - { |
253 | | - "markers": [ |
254 | | - "global", |
255 | | - "globals", |
256 | | - "eslint", |
257 | | - "eslint-disable", |
258 | | - "*package", |
259 | | - "!", |
260 | | - "," |
261 | | - ] |
262 | | - } |
263 | | - ], |
| 110 | + "space-unary-ops": [2, { "words": true, "nonwords": false }], |
| 111 | + "spaced-comment": [0, "always", { "markers": ["global", "globals", "eslint", "eslint-disable", "*package", "!", ","] }], |
264 | 112 | "use-isnan": 2, |
265 | 113 | "valid-typeof": 2, |
266 | | - "wrap-iife": [ |
267 | | - 2, |
268 | | - "any" |
269 | | - ], |
270 | | - "yoda": [ |
271 | | - 2, |
272 | | - "never" |
273 | | - ] |
| 114 | + "wrap-iife": [2, "any"], |
| 115 | + "yoda": [2, "never"] |
274 | 116 | } |
275 | 117 | } |
0 commit comments