123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- {
- "env": {
- "es6": true,
- "browser": true,
- "jest": true,
- "node": true
- },
- "extends": [
- "eslint:recommended",
- "plugin:react/recommended",
- "plugin:prettier/recommended",
- "plugin:@typescript-eslint/recommended",
- "prettier",
- "prettier/react",
- "prettier/@typescript-eslint"
- ],
- "parser": "@typescript-eslint/parser",
- "plugins": [
- "jsx-a11y",
- "@typescript-eslint",
- "prettier"
- ],
- "rules": {
- "react/display-name": "off",
- "@typescript-eslint/no-explicit-any": "off",
- "@typescript-eslint/explicit-function-return-type": "off",
- "@typescript-eslint/camelcase": "off",
- "@typescript-eslint/explicit-module-boundary-types": "off"
- },
- "settings": {
- "react": {
- "version": "detect"
- },
- "import/resolver": {
- "node": {
- "extensions": [
- ".js",
- ".jsx",
- ".ts",
- ".tsx"
- ]
- }
- }
- }
- }
|