|
1 | 1 | { |
| 2 | + "root": true, |
2 | 3 | "env": { |
3 | 4 | "node": true |
4 | 5 | }, |
|
14 | 15 | "eqeqeq": 2, |
15 | 16 | "indent": [2, 2], |
16 | 17 | "key-spacing": [2, {"beforeColon": false, "afterColon": true}], |
| 18 | + "keyword-spacing": 2, |
17 | 19 | "new-cap": 2, |
18 | 20 | "new-parens": 2, |
19 | 21 | "no-array-constructor": 2, |
|
28 | 30 | "no-inline-comments": 0, |
29 | 31 | "no-irregular-whitespace": 2, |
30 | 32 | "no-mixed-spaces-and-tabs": 2, |
31 | | - "no-multi-spaces": 2, |
32 | 33 | "no-multiple-empty-lines": 0, |
| 34 | + "no-multi-spaces": 2, |
33 | 35 | "no-new-object": 2, |
34 | 36 | "no-param-reassign": 0, |
35 | 37 | "no-process-env": 2, |
|
40 | 42 | "no-trailing-spaces": 2, |
41 | 43 | "no-underscore-dangle": 0, |
42 | 44 | "no-void": 2, |
| 45 | + "object-curly-spacing": [2, "never"], |
43 | 46 | "one-var": [2, "never"], |
44 | 47 | "operator-assignment": [2, "always"], |
45 | 48 | "padded-blocks": 0, |
46 | 49 | "quotes": 0, |
47 | 50 | "radix": 2, |
48 | 51 | "semi": [2, "always"], |
49 | 52 | "semi-spacing": [2, {"before": false, "after": true}], |
50 | | - "space-after-keywords": [2, "always", {"checkFunctionKeyword": true}], |
51 | 53 | "space-before-blocks": [2, "always"], |
52 | | - "space-before-function-parentheses": [2, {"anonymous": "always", "named": "never"}], |
53 | | - "space-in-brackets": [2, "never"], |
| 54 | + "spaced-comment": [2, "always"], |
54 | 55 | "space-in-parens": [2, "never"], |
55 | | - "space-return-throw-case": 2, |
56 | 56 | "space-unary-ops": [2, {"words": true, "nonwords": false}], |
57 | | - "spaced-line-comment": [2, "always"], |
58 | 57 | "strict": [2, "global"], |
59 | 58 | "vars-on-top": 0, |
60 | 59 | "wrap-iife": [2, "inside"], |
|
0 commit comments