|
2 | 2 | "env": { |
3 | 3 | "node": true |
4 | 4 | }, |
5 | | - "extends": "airbnb-base/legacy", |
| 5 | + "extends": "airbnb-base", |
6 | 6 | "rules": { |
7 | 7 | "comma-dangle": ["error", "always-multiline"], |
8 | 8 | "consistent-return": "off", |
9 | 9 | "curly": ["error", "multi-line"], |
10 | 10 | "func-names": "off", |
| 11 | + "function-call-argument-newline": "off", |
| 12 | + "function-paren-newline": "off", |
11 | 13 | "global-require": "off", |
| 14 | + "import/no-unresolved": "off", |
12 | 15 | "indent": "off", |
13 | 16 | "max-len": "off", |
14 | 17 | "newline-per-chained-call": "off", |
| 18 | + "no-bitwise": "off", |
15 | 19 | "no-console": "off", |
| 20 | + "no-continue": "off", |
16 | 21 | "no-else-return": "off", |
17 | 22 | "no-empty": "off", |
18 | 23 | "no-mixed-operators": "off", |
19 | 24 | "no-multi-spaces": "off", |
20 | 25 | "no-multiple-empty-lines": ["error", { "max": 2, "maxBOF": 0, "maxEOF": 0 } ], |
21 | 26 | "no-param-reassign": "off", |
| 27 | + "no-plusplus": "off", |
22 | 28 | "no-prototype-builtins": "off", |
23 | 29 | "no-throw-literal": "off", |
24 | 30 | "no-underscore-dangle": "off", |
25 | 31 | "no-use-before-define": "off", |
| 32 | + "no-var": "off", |
| 33 | + "operator-linebreak": "off", |
| 34 | + "prefer-arrow-callback": "off", |
| 35 | + "prefer-destructuring": "off", |
| 36 | + "prefer-numeric-literals": "off", |
| 37 | + "prefer-object-spread": "off", |
| 38 | + "prefer-rest-params": "off", |
| 39 | + "prefer-spread": "off", |
| 40 | + "prefer-template": "off", |
26 | 41 | "quote-props": "off", |
27 | 42 | "spaced-comment": ["error", "always", { "markers": ["@", "@include"], "exceptions": ["@", "@commands"] }], |
| 43 | + "strict": "off", |
28 | 44 | "vars-on-top": "off", |
29 | 45 | "new-cap": ["error", { |
30 | 46 | "capIsNewExceptions": [ |
|
0 commit comments