{ "root": true, "parser": "@typescript-eslint/parser", "parserOptions": { "ecmaVersion": 6, "sourceType": "module", "project": "./tsconfig.json" }, "plugins": ["@typescript-eslint"], "extends": ["standard-with-typescript"], "rules": { "@typescript-eslint/semi": "error", "@typescript-eslint/strict-boolean-expressions": "off", "@typescript-eslint/restrict-template-expressions": "off", "@typescript-eslint/prefer-nullish-coalescing": "off", "@typescript-eslint/explicit-function-return-type": "off", "@typescript-eslint/no-unused-vars": "off", "no-prototype-builtins": "off", "no-throw-literal": "error", "no-unused-expressions": "error", "no-redeclare": "error", "curly": "error", "eqeqeq": "error" } }