|
1 | 1 | {
|
2 |
| - "root": true, |
3 |
| - "plugins": ["node"], |
4 |
| - "extends": ["eslint:recommended", "plugin:node/recommended"], |
5 |
| - "env": { |
6 |
| - "node": true, |
7 |
| - "jasmine": true |
8 |
| - }, |
9 |
| - "rules": { |
10 |
| - "quotes": ["error", "double"], |
11 |
| - "no-undef": "error", |
12 |
| - "no-extra-semi": "error", |
13 |
| - "semi": "error", |
14 |
| - "no-template-curly-in-string": "error", |
15 |
| - "no-caller": "error", |
16 |
| - "yoda": "error", |
17 |
| - "eqeqeq": "error", |
18 |
| - "global-require": "off", |
19 |
| - "brace-style": "error", |
20 |
| - "eol-last": "error", |
21 |
| - "indent": ["error", "tab", { "SwitchCase": 1 }], |
22 |
| - "no-extra-bind": "warn", |
23 |
| - "no-empty": "off", |
24 |
| - "no-multiple-empty-lines": "error", |
25 |
| - "no-multi-spaces": "error", |
26 |
| - "no-process-exit": "warn", |
27 |
| - "space-in-parens": "error", |
28 |
| - "no-trailing-spaces": "error", |
29 |
| - "no-use-before-define": "off", |
30 |
| - "no-unused-vars": ["error", {"args": "none"}], |
31 |
| - "key-spacing": "error", |
32 |
| - "space-infix-ops": "error", |
33 |
| - "no-unsafe-negation": "error", |
34 |
| - "no-loop-func": "warn", |
35 |
| - "space-before-function-paren": ["error", "never"], |
36 |
| - "space-before-blocks": "error", |
37 |
| - "object-curly-spacing": ["error", "always"], |
38 |
| - "keyword-spacing": ["error", { |
39 |
| - "after": false, |
40 |
| - "overrides": { |
41 |
| - "try": {"after": true}, |
42 |
| - "else": {"after": true}, |
43 |
| - "throw": {"after": true}, |
44 |
| - "case": {"after": true}, |
45 |
| - "return": {"after": true}, |
46 |
| - "finally": {"after": true}, |
47 |
| - "do": {"after": true} |
48 |
| - } |
49 |
| - }], |
50 |
| - "node/no-unpublished-require": 0, |
51 |
| - "no-console": "off", |
52 |
| - "valid-jsdoc": "error" |
53 |
| - } |
| 2 | + "extends": "webpack", |
| 3 | + "rules": { |
| 4 | + "no-param-reassign": 0, |
| 5 | + "no-undefined": 0, |
| 6 | + "no-underscore-dangle": 0 |
| 7 | + } |
54 | 8 | }
|
0 commit comments