{ "env": { "browser": true, "es2021": true }, "extends": [ "eslint:recommended", "plugin:react/recommended", "plugin:@typescript-eslint/recommended" ], "parser": "@typescript-eslint/parser", "parserOptions": { "ecmaFeatures": { "jsx": true }, "ecmaVersion": "latest", "sourceType": "module" }, "plugins": ["import", "react", "@typescript-eslint"], "rules": { "@typescript-eslint/no-explicit-any": 0, "@typescript-eslint/no-empty-function": ["error"], "@typescript-eslint/no-unused-vars": [ "error", { "argsIgnorePattern": "^_", "varsIgnorePattern": "^_" } ], "indent": [ "error", 2, { "SwitchCase": 1, "ignoredNodes": ["ConditionalExpression"] } ], "max-depth": ["warn", 3], "max-len": ["error", 110], "max-params": ["error", 2], "no-console": ["error"], "no-empty-function": "off", "react/jsx-indent": [ 2, 2, { "indentLogicalExpressions": true } ], "react/jsx-max-props-per-line": [ 2, { "maximum": 2, "when": "multiline" } ], "react/prop-types": "off", "react/react-in-jsx-scope": "off" }, "settings": { "react": { "version": "detect" } } }