|
22 | 22 | "react-hooks/rules-of-hooks": "error", |
23 | 23 | "react-hooks/exhaustive-deps": "error", |
24 | 24 | "@typescript-eslint/explicit-function-return-type": "off", |
25 | | - "@typescript-eslint/indent": ["error", 2], |
26 | | - "@typescript-eslint/prefer-interface": "off", |
27 | 25 | "react/jsx-filename-extension": ["error", { "extensions": [".js", ".tsx"] }], |
28 | 26 | "react/prop-types": "off", |
29 | 27 | "react/jsx-one-expression-per-line": "off", |
30 | 28 | "import/prefer-default-export": "off", |
31 | 29 | "import/no-unresolved": ["error", { "ignore": ["reactive-react-redux"] }], |
32 | 30 | "no-param-reassign": "off", |
33 | | - "default-case": "off", |
34 | 31 | "arrow-body-style": "off", |
35 | 32 | "no-plusplus": "off", |
36 | | - "import/no-useless-path-segments": 0, |
37 | | - "import/no-duplicates": "off" |
| 33 | + "import/no-duplicates": "off", |
| 34 | + "arrow-parens": ["error", "as-needed", { "requireForBlockBody": true }], |
| 35 | + "prefer-object-spread": "off", |
| 36 | + "default-case": "off" |
38 | 37 | }, |
39 | 38 | "overrides": [{ |
40 | 39 | "files": ["__tests__/**/*"], |
|
0 commit comments