{ "parser": "@typescript-eslint/parser", "extends": [ "plugin:@typescript-eslint/recommended" ], "parserOptions": { "ecmaVersion": 2018, "project": "./tsconfig.json", "sourceType": "module" }, "rules": { "no-var": "error", "no-void": "error", "prefer-const": "error", "@typescript-eslint/ban-ts-comment": "off", "@typescript-eslint/ban-types": "off", "@typescript-eslint/explicit-module-boundary-types": "off", "@typescript-eslint/no-empty-function": "off", "@typescript-eslint/no-empty-interface": "off", "@typescript-eslint/no-explicit-any": "off", "@typescript-eslint/no-floating-promises": "error", "@typescript-eslint/no-non-null-asserted-optional-chain": "off", "@typescript-eslint/no-inferrable-types": "off", "@typescript-eslint/no-misused-promises": [ "error", { "checksVoidReturn": false } ], "@typescript-eslint/no-namespace": "off", "@typescript-eslint/no-non-null-assertion": "off", "@typescript-eslint/no-this-alias": "off", "@typescript-eslint/no-unsafe-argument": "error", "@typescript-eslint/no-unused-vars": [ "error", { "args": "none", "varsIgnorePattern": "^_" // ignore unused variables starting with _ } ], "@typescript-eslint/no-var-requires": "off" } }