Merge pull request #3211 from github/koesie10/remove-disabled-eslint-rules

Remove disabled ESLint rules without linting errors
This commit is contained in:
Koen Vlaswinkel
2024-01-08 16:17:30 +01:00
committed by GitHub

View File

@@ -31,7 +31,6 @@ const baseConfig = {
],
rules: {
"@typescript-eslint/await-thenable": "error",
"@typescript-eslint/no-use-before-define": 0,
"@typescript-eslint/no-unused-vars": [
"warn",
{
@@ -40,9 +39,6 @@ const baseConfig = {
ignoreRestSiblings: false,
},
],
"@typescript-eslint/explicit-function-return-type": "off",
"@typescript-eslint/explicit-module-boundary-types": "off",
"@typescript-eslint/no-non-null-assertion": "off",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-floating-promises": ["error", { ignoreVoid: true }],
"@typescript-eslint/no-invalid-this": "off",