|
24 | 24 | "eqeqeq": [2],
|
25 | 25 | "func-names": [0],
|
26 | 26 | "func-style": [0, "declaration"],
|
| 27 | + "generator-star-spacing": [2, "after"], |
27 | 28 | "global-strict": [0, "never"],
|
28 | 29 | "guard-for-in": [0],
|
29 | 30 | "handle-callback-err": [0],
|
|
36 | 37 | "max-statements": [0, 10],
|
37 | 38 | "new-parens": [2],
|
38 | 39 | "new-cap": [2],
|
| 40 | + "newline-after-var": [0], |
39 | 41 | "no-alert": [2],
|
40 | 42 | "no-array-constructor": [2],
|
41 | 43 | "no-bitwise": [0],
|
|
44 | 46 | "no-cond-assign": [2],
|
45 | 47 | "no-console": [2],
|
46 | 48 | "no-constant-condition": [2],
|
| 49 | + "no-continue": [2], |
47 | 50 | "no-control-regex": [2],
|
48 | 51 | "no-debugger": [2],
|
49 | 52 | "no-delete-var": [2],
|
50 | 53 | "no-div-regex": [0],
|
51 | 54 | "no-dupe-args": [2],
|
52 | 55 | "no-dupe-keys": [2],
|
| 56 | + "no-duplicate-case": [2], |
53 | 57 | "no-else-return": [0],
|
54 | 58 | "no-empty": [2],
|
55 | 59 | "no-empty-class": [2],
|
|
93 | 97 | "no-obj-calls": [2],
|
94 | 98 | "no-octal": [2],
|
95 | 99 | "no-octal-escape": [2],
|
| 100 | + "no-param-reassign": [2], |
96 | 101 | "no-path-concat": [0],
|
97 | 102 | "no-plusplus": [0],
|
98 | 103 | "no-process-env": [0],
|
|
129 | 134 | "no-wrap-func": [2],
|
130 | 135 | "one-var": [0],
|
131 | 136 | "operator-assignment": [0, "always"],
|
| 137 | + "operator-linebreak": [2, "after"], |
132 | 138 | "padded-blocks": [0],
|
133 | 139 | "quote-props": [0],
|
134 | 140 | "radix": [0],
|
135 | 141 | "semi": [2],
|
136 | 142 | "semi-spacing": [2, { "before": false, "after": true }],
|
137 | 143 | "sort-vars": [0],
|
138 | 144 | "space-after-keywords": [2, "always"],
|
139 |
| - "space-before-function-parentheses": [2, { "anonymous": "always", "named": "never" }], |
| 145 | + "space-before-function-paren": [2, { "anonymous": "always", "named": "never" }], |
140 | 146 | "space-before-blocks": [0, "always"],
|
141 | 147 | "space-in-brackets": [0, "never", {
|
142 | 148 | "singleValue": true,
|
|
0 commit comments