{ "env": { "browser": true, "es2021": true }, "extends": [ "plugin:@typescript-eslint/recommended", "prettier", "prettier/prettier", "plugin:prettier/recommended", "plugin:import/recommended" ], "parser": "@typescript-eslint/parser", "parserOptions": { "ecmaVersion": 12, "sourceType": "module", "project": ["tsconfig.json"] }, "plugins": ["@typescript-eslint"], "rules": { "no-use-before-define": "off", "no-multi-assign": "off", "no-shadow": "off", "no-param-reassign": "off", "no-plusplus": "off", "no-useless-return": "off", "consistent-return": "off", "no-restricted-syntax": "off", "@typescript-eslint/no-empty-function": "off", "@typescript-eslint/no-var-requires": "off", "@typescript-eslint/no-explicit-any": "off", "@typescript-eslint/ban-ts-comment": "off", "@typescript-eslint/no-use-before-define": "off", "@typescript-eslint/no-shadow": ["error"], "@typescript-eslint/explicit-function-return-type": "off", "@typescript-eslint/explicit-module-boundary-types": "off", "import/prefer-default-export": "off", "import/extensions": [ "error", "ignorePackages", { "ts": "never" } ] }, "settings": { "import/resolver": { "typescript": {} } } }