|
31 | 31 | "node": true, |
32 | 32 | "jest": true |
33 | 33 | }, |
| 34 | + "overrides": [ |
| 35 | + { |
| 36 | + "files": ["e2e/**/*.ts"], |
| 37 | + "rules": { |
| 38 | + "testing-library/prefer-screen-queries": "off" |
| 39 | + } |
| 40 | + } |
| 41 | + ], |
34 | 42 | "rules": { |
35 | 43 | "func-names": [2, "as-needed"], |
36 | 44 | "no-shadow": 0, |
37 | 45 | "@typescript-eslint/no-shadow": 2, |
38 | 46 | "@typescript-eslint/explicit-function-return-type": 0, |
39 | | - "@typescript-eslint/no-unused-vars": [0, {"argsIgnorePattern": "^_"}], |
| 47 | + "@typescript-eslint/no-unused-vars": [0, { "argsIgnorePattern": "^_" }], |
40 | 48 | "@typescript-eslint/no-use-before-define": 0, |
41 | 49 | "@typescript-eslint/ban-ts-ignore": 0, |
42 | 50 | "@typescript-eslint/no-empty-function": 0, |
43 | 51 | "@typescript-eslint/ban-ts-comment": 0, |
44 | 52 | "@typescript-eslint/no-var-requires": 0, |
45 | 53 | "@typescript-eslint/no-explicit-any": 0, |
46 | 54 | "@typescript-eslint/explicit-module-boundary-types": 0, |
47 | | - "@typescript-eslint/consistent-type-imports": [2, {"prefer": "type-imports"}], |
| 55 | + "@typescript-eslint/consistent-type-imports": [ |
| 56 | + 2, |
| 57 | + { "prefer": "type-imports" } |
| 58 | + ], |
48 | 59 | "@typescript-eslint/ban-types": 0, |
49 | 60 | "react-hooks/rules-of-hooks": 2, |
50 | 61 | "react-hooks/exhaustive-deps": 1, |
|
0 commit comments