{ "root": true, "parser": "@typescript-eslint/parser", "plugins": ["@typescript-eslint"], "extends": [ "eslint:recommended", "plugin:@typescript-eslint/eslint-recommended", "plugin:@typescript-eslint/recommended" ], "ignorePatterns": ["./**/*.js", "./webpack/*.config.js", "./e2e/*.ts"], "rules": { "no-throw-literal": "error", "no-unused-expressions": "error", "curly": "error", "class-methods-use-this": "warn", "no-console": "warn", "@typescript-eslint/no-empty-interface": "off", "no-extra-boolean-cast": "off" } }