{ "extends": [ "plugin:@typescript-eslint/eslint-recommended", "plugin:@typescript-eslint/recommended" ], "parser": "@typescript-eslint/parser", "plugins": [ "@typescript-eslint", "unused-imports" ], "rules": { "quotes": [ "error", "single" ], "unused-imports/no-unused-imports": "error", "react/jsx-uses-react": "off", "react/react-in-jsx-scope": "off", "@typescript-eslint/ban-ts-comment": "off", "indent": [ "error", 2 ] } }