{ "root": true, "env": { "browser": true, "es2020": true }, "extends": [ "eslint:recommended", "plugin:@typescript-eslint/recommended", "plugin:react-hooks/recommended", "plugin:react/recommended" ], "ignorePatterns": ["dist", ".eslintrc.json"], "parser": "@typescript-eslint/parser", "plugins": ["react-refresh", "@typescript-eslint", "react"], "rules": { "react-refresh/only-export-components": [ "warn", { "allowConstantExport": true } ], "@typescript-eslint/no-unused-vars": ["warn", { "varsIgnorePattern": "^React$|^_", "argsIgnorePattern": "^_", "ignoreRestSiblings": true }], "react/react-in-jsx-scope": "off", "react/jsx-uses-react": "off", "react/jsx-uses-vars": "error" }, "settings": { "react": { "version": "detect" } } }