module.exports = { root: true, parser: "@typescript-eslint/parser", parserOptions: { tsconfigRootDir: __dirname, project: ["./tsconfig.json"], }, extends: [ "eslint:recommended", "plugin:@typescript-eslint/recommended", "plugin:@typescript-eslint/recommended-requiring-type-checking", "plugin:import/errors", "plugin:import/warnings", "plugin:import/typescript", "plugin:react/recommended", "plugin:prettier/recommended", ], plugins: ["@typescript-eslint", "react", "react-hooks", "prettier"], rules: { 'prettier/prettier': [ 'error', { 'endOfLine': 'lf', } ], "import/first": "error", "import/order": [ "error", { "newlines-between": "always", "alphabetize": { "order": "asc", "caseInsensitive": true, }, "pathGroups": [ { "pattern": "@/**", "group": "external", "position": "after", }, { "pattern": "./*.css", "group": "index", "position": "after", } ], }, ], "react/prop-types": "off", "react-hooks/rules-of-hooks": "error", "react-hooks/exhaustive-deps": "error", // Turn off these rules "@typescript-eslint/explicit-module-boundary-types": "off", "import/no-unresolved": "off", }, settings: { react: { version: "detect", }, }, };