|
11 | 11 | "block-scoped-var": [0],
|
12 | 12 | "brace-style": [2, "1tbs", { "allowSingleLine": true }],
|
13 | 13 | "camelcase": [2],
|
| 14 | + "comma-dangle": [2, "never"], |
14 | 15 | "comma-spacing": [2],
|
15 | 16 | "comma-style": [2, "last"],
|
16 | 17 | "complexity": [0, 11],
|
|
40 | 41 | "no-bitwise": [0],
|
41 | 42 | "no-caller": [2],
|
42 | 43 | "no-catch-shadow": [2],
|
43 |
| - "no-comma-dangle": [2], |
44 | 44 | "no-cond-assign": [2],
|
45 | 45 | "no-console": [2],
|
46 | 46 | "no-constant-condition": [2],
|
47 | 47 | "no-control-regex": [2],
|
48 | 48 | "no-debugger": [2],
|
49 | 49 | "no-delete-var": [2],
|
50 | 50 | "no-div-regex": [0],
|
| 51 | + "no-dupe-args": [2], |
51 | 52 | "no-dupe-keys": [2],
|
52 | 53 | "no-else-return": [0],
|
53 | 54 | "no-empty": [2],
|
|
80 | 81 | "no-mixed-spaces-and-tabs": [2, false],
|
81 | 82 | "no-multi-spaces": [2],
|
82 | 83 | "no-multi-str": [2],
|
83 |
| - "no-multiple-empty-lines": [0, {"max": 2}], |
| 84 | + "no-multiple-empty-lines": [2, {"max": 1}], |
84 | 85 | "no-native-reassign": [2],
|
85 | 86 | "no-negated-in-lhs": [2],
|
86 | 87 | "no-nested-ternary": [0],
|
|
112 | 113 | "no-sparse-arrays": [2],
|
113 | 114 | "no-sync": [0],
|
114 | 115 | "no-ternary": [0],
|
| 116 | + "no-throw-literal": [2], |
115 | 117 | "no-trailing-spaces": [2],
|
116 | 118 | "no-undef": [2],
|
117 | 119 | "no-undef-init": [2],
|
|
131 | 133 | "quote-props": [0],
|
132 | 134 | "radix": [0],
|
133 | 135 | "semi": [2],
|
| 136 | + "semi-spacing": [2, { "before": false, "after": true }], |
134 | 137 | "sort-vars": [0],
|
135 |
| - "space-after-keywords": [2, "always", { "checkFunctionKeyword": true }], |
| 138 | + "space-after-keywords": [2, "always"], |
| 139 | + "space-before-function-parentheses": [2, { "anonymous": "always", "named": "never" }], |
136 | 140 | "space-before-blocks": [0, "always"],
|
137 | 141 | "space-in-brackets": [0, "never", {
|
138 | 142 | "singleValue": true,
|
|
145 | 149 | "space-in-parens": [2, "never"],
|
146 | 150 | "space-infix-ops": [2],
|
147 | 151 | "space-return-throw-case": [2],
|
148 |
| - "space-after-function-name": [2, "never"], |
149 | 152 | "space-unary-ops": [2, { "words": true, "nonwords": false }],
|
150 | 153 | "spaced-line-comment": [0, "always"],
|
151 | 154 | "strict": [0],
|
|
0 commit comments