{ "root": true, "extends": [ "eslint:recommended", "plugin:@typescript-eslint/eslint-recommended", "plugin:@typescript-eslint/recommended", "plugin:prettier/recommended" ], "parser": "@typescript-eslint/parser", "plugins": [ "@typescript-eslint" ], "rules": { "import/extensions": "off", "no-console": ["warn", { "allow": ["warn", "error"] }], "import/prefer-default-export": "off", "prettier/prettier": ["error"] }, "overrides": [ { "files": ["**/*.ts", "**/*.tsx"], "rules": { "@typescript-eslint/explicit-function-return-type": "off", "@typescript-eslint/explicit-module-boundary-types": "off", "@typescript-eslint/no-explicit-any": "off", "no-shadow": "off", "@typescript-eslint/no-shadow": ["error"] } } ] }