{ "parser": "@typescript-eslint/parser", "plugins": [ "@typescript-eslint" ], "extends": [ "eslint:recommended", "plugin:@typescript-eslint/recommended" ], "rules": { "@typescript-eslint/ban-types": "warn", "@typescript-eslint/explicit-function-return-type": "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-namespace": "off", "@typescript-eslint/no-loss-of-precision": "off", "@typescript-eslint/no-non-null-assertion": "off", "@typescript-eslint/no-non-null-asserted-optional-chain": "off", "@typescript-eslint/no-unnecessary-type-constraint": "warn", "@typescript-eslint/no-unused-vars": "off", "@typescript-eslint/no-var-requires": "warn", "no-console": "off", "no-empty": "warn", "no-prototype-builtins": "off", "no-redeclare": "warn", "no-useless-escape": "off", "no-async-promise-executor": "off", "prefer-const": "warn", "array-bracket-spacing": ["error", "never"] } }