| { | |
| "env": { | |
| "browser": true, | |
| "es2021": true, | |
| "jest": true | |
| }, | |
| "extends": [ | |
| "eslint:recommended", | |
| "plugin:react/recommended", | |
| "plugin:@typescript-eslint/recommended" | |
| ], | |
| "parser": "@typescript-eslint/parser", | |
| "parserOptions": { | |
| "ecmaFeatures": { | |
| "jsx": true | |
| }, | |
| "ecmaVersion": "latest", | |
| "sourceType": "module" | |
| }, | |
| "plugins": [ | |
| "react", | |
| "react-hooks", | |
| "@typescript-eslint" | |
| ], | |
| "rules": { | |
| "@typescript-eslint/no-explicit-any": [ | |
| "off" | |
| ], | |
| "max-lines": [ | |
| "warn", | |
| { | |
| "max": 740, | |
| "skipBlankLines": true, | |
| "skipComments": true | |
| } | |
| ], | |
| "react/react-in-jsx-scope": "off", | |
| "@typescript-eslint/no-non-null-assertion": "off", | |
| "@typescript-eslint/explicit-module-boundary-types": "off" | |
| } | |
| } | |