|
16 | 16 | "import/no-unresolved": 0, |
17 | 17 | "import/no-named-as-default": 0, |
18 | 18 | "import/no-named-as-default-member": 0, |
| 19 | + "import/no-useless-path-segments": 1, |
| 20 | + "import/no-cycle":0, //temporarily off |
| 21 | + "import/no-import-module-exports": 0, //temporarily off |
19 | 22 | "comma-dangle": 0, // not sure why airbnb turned this on. gross! |
| 23 | + "default-param-last": 0, |
| 24 | + "no-else-return" :0, |
20 | 25 | "indent": 0, |
21 | 26 | "no-console": 0, |
22 | 27 | "no-alert": 0, |
| 28 | + "no-import-assign": 2, |
| 29 | + "no-promise-executor-return": 0, //temporarily off |
| 30 | + "no-restricted-exports": 1, |
23 | 31 | "no-underscore-dangle": 0, |
24 | 32 | "no-useless-catch": 2, |
| 33 | + "prefer-object-spread": 0, |
25 | 34 | "max-len": [1, 120, 2, {"ignoreComments": true, "ignoreTemplateLiterals": true}], |
| 35 | + "max-classes-per-file": 0, |
26 | 36 | "quote-props": [1, "as-needed"], |
27 | 37 | "no-unused-vars": [1, {"vars": "local", "args": "none"}], |
28 | 38 | "consistent-return": ["error", { "treatUndefinedAsUnspecified": true }], |
|
36 | 46 | { "ignorePureComponents": true |
37 | 47 | }], |
38 | 48 | "class-methods-use-this": 0, |
39 | | - "react/jsx-no-bind": [2, {"allowBind": true, "allowArrowFunctions": true}], |
| 49 | + "react/button-has-type": 0, |
| 50 | + "react/destructuring-assignment":0, |
| 51 | + "react/function-component-definition": 0, |
| 52 | + "react/jsx-curly-newline":0, |
| 53 | + "react/jsx-fragments":0, |
| 54 | + "react/jsx-no-useless-fragment":0, // temporarily off |
| 55 | + "react/jsx-one-expression-per-line": 0, |
| 56 | + "react/jsx-props-no-spreading": 0, |
| 57 | + "react/jsx-wrap-multilines": 0, |
| 58 | + "react/jsx-no-bind": [2, {"allowBind": true, "allowArrowFunctions": true, "allowFunctions": true}], |
| 59 | + "react/no-deprecated": 0, //temporarily off |
| 60 | + "react/no-unused-class-component-methods": 1, |
| 61 | + "react/sort-comp": 0, |
40 | 62 | "no-return-assign": [2, "except-parens"], |
41 | 63 | "jsx-a11y/anchor-is-valid": [ |
42 | 64 | "error", |
|
49 | 71 | ] |
50 | 72 | } |
51 | 73 | ], |
| 74 | + "jsx-a11y/control-has-associated-label": 0, //temporarily off |
| 75 | + "jsx-a11y/label-has-associated-control": 0, //temporarily off |
52 | 76 | "jsx-a11y/label-has-for": [ |
53 | 77 | 2, |
54 | 78 | { |
|
0 commit comments