{ "env": { "browser": true, "es2021": true }, "extends": [ "eslint:recommended", "plugin:react/recommended", "plugin:@typescript-eslint/recommended", "plugin:prettier/recommended" ], "overrides": [], "parser": "@typescript-eslint/parser", "parserOptions": { "ecmaVersion": "latest", "sourceType": "module" }, "plugins": ["react", "@typescript-eslint", "simple-import-sort", "prettier"], "rules": { "indent": ["error", 2], "linebreak-style": ["error", "unix"], "no-empty-pattern": "off", "quotes": ["error", "single"], "semi": ["error", "always"], "react/react-in-jsx-scope": ["off"], "react/jsx-uses-react": ["off"], "react/no-unescaped-entities": ["off"], "simple-import-sort/exports": "warn", "react/prop-types": "off", "react/jsx-props-no-spreading": "off", "@typescript-eslint/no-empty-interface": "off", "simple-import-sort/imports": [ "warn", { "groups": [ ["^react", "^@?\\w"], ["^react-router", "^@?\\w"], ["^(@|components)(/.*|$)"], ["^\\u0000"], ["^\\.\\.(?!/?$)", "^\\.\\./?$"], ["^\\./(?=.*/)(?!/?$)", "^\\.(?!/?$)", "^\\./?$"], ["^.+\\.?(css)$"] ] } ] } }