|
1 | 1 | {
|
2 |
| - "comment": "off = 0, warn = 1, error = 2", |
| 2 | + "comment": "off = 0, warn = 1, error = 2", |
3 | 3 |
|
4 |
| - "parser": "babel-eslint", |
5 |
| - "env": { |
6 |
| - "browser": true |
7 |
| - }, |
8 |
| - "extends": "airbnb", |
9 |
| - "rules": { |
10 |
| - "max-len": [1, 100, 2, {ignoreComments: true}], |
11 |
| - "quote-props": [1, "consistent-as-needed"], |
12 |
| - "no-cond-assign": [2, "except-parens"], |
13 |
| - "radix": 0, |
14 |
| - "space-infix-ops": 0, |
15 |
| - "no-unused-vars": [1, {"vars": "local", "args": "none"}], |
16 |
| - "default-case": 0, |
17 |
| - "no-else-return": 0, |
18 |
| - "no-param-reassign": 0, |
19 |
| - "quotes": 0, |
20 |
| - "comma-dangle": [1, "only-multiline"], |
21 |
| - "vars-on-top": 0, |
22 |
| - "prefer-const": 1, |
23 |
| - "eqeqeq": 1, |
24 |
| - "import/imports-first": 1, |
25 |
| - "consistent-return": 0, |
26 |
| - "import/no-mutable-exports": 0, |
27 |
| - "no-class-assign": 0, |
28 |
| - "jsx-a11y/label-has-for": 0, |
29 |
| - "jsx-a11y/href-no-hash": 1, |
30 |
| - "camelcase": 0, |
31 |
| - "no-fallthrough": 0, |
32 |
| - "no-restricted-syntax": 1, |
33 |
| - "guard-for-in": 1, |
34 |
| - "array-callback-return": 1, |
35 |
| - "class-methods-use-this": 1, |
36 |
| - "jsx-a11y/no-static-element-interactions": 1, |
37 |
| - "react/forbid-prop-types": 1, |
38 |
| - "arrow-parens": 1, |
39 |
| - "no-bitwise": 1, |
40 |
| - "no-plusplus": 1, |
41 |
| - "no-extend-native": 1, |
42 |
| - "no-use-before-define": 1, |
43 |
| - "no-unused-expressions": 1, |
44 |
| - "no-continue": 1, |
45 |
| - "no-prototype-builtins": 1, |
46 |
| - "dot-notation": 1, |
47 |
| - } |
| 4 | + "parser": "babel-eslint", |
| 5 | + "env": { |
| 6 | + "browser": true |
| 7 | + }, |
| 8 | + "extends": "airbnb", |
| 9 | + "rules": { |
| 10 | + "max-len": [1, 100, 2, {ignoreComments: true}], |
| 11 | + "quote-props": [1, "consistent-as-needed"], |
| 12 | + "no-cond-assign": [2, "except-parens"], |
| 13 | + "radix": 0, |
| 14 | + "space-infix-ops": 0, |
| 15 | + "no-unused-vars": [1, {"vars": "local", "args": "none"}], |
| 16 | + "default-case": 0, |
| 17 | + "no-else-return": 0, |
| 18 | + "no-param-reassign": 0, |
| 19 | + "quotes": 0, |
| 20 | + "comma-dangle": [1, "only-multiline"], |
| 21 | + "vars-on-top": 0, |
| 22 | + "prefer-const": 1, |
| 23 | + "eqeqeq": 1, |
| 24 | + "import/imports-first": 1, |
| 25 | + "consistent-return": 0, |
| 26 | + "import/no-mutable-exports": 0, |
| 27 | + "no-class-assign": 0, |
| 28 | + "jsx-a11y/label-has-for": 0, |
| 29 | + "jsx-a11y/href-no-hash": 1, |
| 30 | + "camelcase": 0, |
| 31 | + "no-fallthrough": 0, |
| 32 | + "no-restricted-syntax": 1, |
| 33 | + "guard-for-in": 1, |
| 34 | + "array-callback-return": 1, |
| 35 | + "class-methods-use-this": 1, |
| 36 | + "jsx-a11y/no-static-element-interactions": 1, |
| 37 | + "react/forbid-prop-types": 1, |
| 38 | + "arrow-parens": 1, |
| 39 | + "no-bitwise": 1, |
| 40 | + "no-plusplus": 1, |
| 41 | + "no-extend-native": 1, |
| 42 | + "no-use-before-define": 1, |
| 43 | + "no-unused-expressions": 1, |
| 44 | + "no-continue": 1, |
| 45 | + "no-prototype-builtins": 1, |
| 46 | + "dot-notation": 1, |
| 47 | + "react/no-array-index-key": 1 |
| 48 | + } |
48 | 49 | }
|
0 commit comments