{ "env": { "node": true, "browser": true, "es2021": true }, "extends": [ "eslint:recommended", "plugin:react/recommended", "plugin:@typescript-eslint/recommended", "prettier" ], "overrides": [ ], "parser": "@typescript-eslint/parser", "parserOptions": { "ecmaFeatures": { "jsx": true }, "ecmaVersion": "latest", "sourceType": "module", "project": "./tsconfig.json" }, "plugins": [ "react", "@typescript-eslint" ], "rules": { "quotes": [ "error", "single", { "avoidEscape": true } ], "jsx-quotes": ["error", "prefer-double"], "@typescript-eslint/no-explicit-any": "off", "@typescript-eslint/no-empty-interface": "off", "@typescript-eslint/no-empty-function": "off", "@typescript-eslint/ban-ts-comment": "off", "@typescript-eslint/no-non-null-assertion": "off", "react/no-children-prop": "off", "no-extra-boolean-cast": "off", "no-constant-condition": "off" }, "settings": { "react": { "version": "detect" } }, "ignorePatterns": [ "mock/**/*" ] }