{ "root": true, "parser": "@typescript-eslint/parser", "parserOptions": { "ecmaFeatures": { "jsx": true }, "project": "./tsconfig.json", "sourceType": "module" }, "settings": { "react": { "version": "detect" } }, "plugins": ["@typescript-eslint", "react"], "extends": [ "eslint:recommended", "plugin:@typescript-eslint/eslint-recommended", "plugin:@typescript-eslint/recommended", "plugin:@typescript-eslint/recommended-requiring-type-checking", "plugin:react/recommended", "plugin:prettier/recommended" ], "rules": { "max-len": ["error", {"code": 120, "ignoreComments": true, "ignoreTemplateLiterals": true}], "no-console": "warn", "semi": [ "error", "always" ], "@typescript-eslint/no-unsafe-member-access": "off", "@typescript-eslint/no-unsafe-assignment": "off", "@typescript-eslint/no-unsafe-call": "error", "@typescript-eslint/no-unsafe-argument": "off", "@typescript-eslint/ban-types": "error", "@typescript-eslint/restrict-template-expressions": "error", "@typescript-eslint/no-misused-promises": "off", "@typescript-eslint/no-unsafe-return": "off", "@typescript-eslint/no-explicit-any": "off", "sort-imports": [ "off", { "ignoreCase": false, "ignoreDeclarationSort": false, "ignoreMemberSort": false, "memberSyntaxSortOrder": ["none", "all", "multiple", "single"], "allowSeparatedGroups": false } ] } }