|
1 | 1 | {
|
2 |
| - "env": { |
3 |
| - "node": true, |
4 |
| - "es6": true, |
5 |
| - "mocha": true |
6 |
| - }, |
7 |
| - "extends": ["airbnb-base", "plugin:prettier/recommended"], |
8 |
| - "plugins": ["mocha", "prettier", "chai-friendly"], |
9 |
| - "rules": { |
10 |
| - "prettier/prettier": "error", |
11 |
| - "linebreak-style": 0, |
12 |
| - "eol-last": 2, |
13 |
| - "quotes": [2, "single", { "avoidEscape": true }], |
14 |
| - "semi": [2, "always"], |
15 |
| - "eqeqeq": [2, "smart"], |
16 |
| - "no-restricted-globals": ["off"], |
17 |
| - "no-use-before-define": [2, "nofunc"], |
18 |
| - "no-confusing-arrow": "off", |
19 |
| - "no-unused-vars": [2, { "vars": "local", "args": "none" }], |
20 |
| - "no-multi-str": 2, |
21 |
| - "no-irregular-whitespace": 2, |
22 |
| - "comma-dangle": "off", |
23 |
| - "max-len": "off", |
24 |
| - "func-names": "off", |
25 |
| - "class-methods-use-this": "off", |
26 |
| - "no-underscore-dangle": "off", |
27 |
| - "no-plusplus": "off", |
28 |
| - "no-unused-expressions": 0, |
29 |
| - "chai-friendly/no-unused-expressions": [2, { "allowShortCircuit": true, "allowTernary": true }], |
30 |
| - "prefer-destructuring": "off", |
31 |
| - "no-multi-assign": "off", |
32 |
| - "no-param-reassign": "off", |
33 |
| - "no-shadow": "off" |
34 |
| - } |
| 2 | + "env": { |
| 3 | + "node": true, |
| 4 | + "es6": true, |
| 5 | + "mocha": true |
| 6 | + }, |
| 7 | + "extends": ["airbnb-base", "plugin:prettier/recommended"], |
| 8 | + "plugins": ["mocha", "prettier", "chai-friendly"], |
| 9 | + "rules": { |
| 10 | + "prettier/prettier": "error", |
| 11 | + "linebreak-style": 0, |
| 12 | + "eol-last": 2, |
| 13 | + "quotes": [2, "single", { "avoidEscape": true }], |
| 14 | + "semi": [2, "always"], |
| 15 | + "eqeqeq": [2, "smart"], |
| 16 | + "no-restricted-globals": ["off"], |
| 17 | + "no-use-before-define": [2, "nofunc"], |
| 18 | + "no-confusing-arrow": "off", |
| 19 | + "no-unused-vars": [2, { "vars": "local", "args": "none" }], |
| 20 | + "no-multi-str": 2, |
| 21 | + "no-irregular-whitespace": 2, |
| 22 | + "comma-dangle": "off", |
| 23 | + "max-len": "off", |
| 24 | + "func-names": "off", |
| 25 | + "class-methods-use-this": "off", |
| 26 | + "no-underscore-dangle": "off", |
| 27 | + "no-plusplus": "off", |
| 28 | + "no-unused-expressions": 0, |
| 29 | + "chai-friendly/no-unused-expressions": [2, { "allowShortCircuit": true, "allowTernary": true }], |
| 30 | + "prefer-destructuring": "off", |
| 31 | + "no-multi-assign": "off", |
| 32 | + "no-param-reassign": "off", |
| 33 | + "no-shadow": "off" |
| 34 | + } |
35 | 35 | }
|
0 commit comments