diff --git a/.eslintrc.json b/.eslintrc.json index 825ef1c4b..59b7e8b89 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -93,26 +93,28 @@ "no-prototype-builtins": "warn", "no-async-promise-executor": "warn", "no-constant-condition": "warn", - // the following rules are part of @typescript-eslint/recommended-type-checked, remove once solved - "@typescript-eslint/no-unused-expressions": "warn", + + // The following rules are part of @typescript-eslint/recommended-type-checked + // and can be remove once solved + "@typescript-eslint/await-thenable": "warn", "@typescript-eslint/ban-ts-comment": "warn", + "@typescript-eslint/no-base-to-string": "warn", + "@typescript-eslint/no-explicit-any": "warn", + "@typescript-eslint/no-floating-promises": "warn", + "@typescript-eslint/no-misused-promises": "warn", + "@typescript-eslint/no-redundant-type-constituents": "warn", + "@typescript-eslint/no-unnecessary-type-assertion": "warn", + "@typescript-eslint/no-unsafe-argument": "warn", "@typescript-eslint/no-unsafe-assignment": "warn", + "@typescript-eslint/no-unsafe-enum-comparison": "warn", + "@typescript-eslint/no-unused-expressions": "warn", "@typescript-eslint/no-unsafe-member-access": "warn", "@typescript-eslint/no-unsafe-return": "warn", - "@typescript-eslint/no-unsafe-argument": "warn", - "@typescript-eslint/no-explicit-any": "warn", "@typescript-eslint/no-unused-vars": "warn", - "@typescript-eslint/no-unnecessary-type-assertion": "warn", "@typescript-eslint/no-unsafe-call": "warn", "@typescript-eslint/require-await": "warn", - "@typescript-eslint/await-thenable": "warn", - "@typescript-eslint/unbound-method": "warn", - "@typescript-eslint/no-redundant-type-constituents": "warn", - "@typescript-eslint/no-floating-promises": "warn", - "@typescript-eslint/no-misused-promises": "warn", - "@typescript-eslint/no-unsafe-enum-comparison": "warn", "@typescript-eslint/restrict-template-expressions": "warn", - "@typescript-eslint/no-base-to-string": "warn", + "@typescript-eslint/unbound-method": "warn", "prefer-const": "warn" } }