{ "parser": "@typescript-eslint/parser", "plugins": ["@typescript-eslint", "import"], "extends": [ "plugin:@typescript-eslint/eslint-recommended", "plugin:@typescript-eslint/recommended", "plugin:import/typescript", "react-app", "prettier" ], "env": { "es6": true }, "parserOptions": { "sourceType": "module" }, "rules": { "@typescript-eslint/ban-types": "off", "@typescript-eslint/ban-ts-comment": "off", "@typescript-eslint/explicit-module-boundary-types": "off", "@typescript-eslint/no-empty-interface": "off", "@typescript-eslint/no-explicit-any": "off", "@typescript-eslint/no-non-null-assertion": "off", "@typescript-eslint/no-inferrable-types": [ "error", { "ignoreParameters": true } ], "no-shadow": "error", "import/no-cycle": "error", "import/no-unused-modules": ["off", { "unusedExports": true }] } }