Skip to content

Commit 51627ad

Browse files
committed
Remove disabled ESLint rules without linting errors
This removes some ESLint rules that do not give any linting errors when removing the rule overrides from the config file. This could be because there are no instances of the rule being violated, or because the rule is already disabled by some other configuration.
1 parent 2ce6fd3 commit 51627ad

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

extensions/ql-vscode/.eslintrc.js

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@ const baseConfig = {
3131
],
3232
rules: {
3333
"@typescript-eslint/await-thenable": "error",
34-
"@typescript-eslint/no-use-before-define": 0,
3534
"@typescript-eslint/no-unused-vars": [
3635
"warn",
3736
{
@@ -40,9 +39,6 @@ const baseConfig = {
4039
ignoreRestSiblings: false,
4140
},
4241
],
43-
"@typescript-eslint/explicit-function-return-type": "off",
44-
"@typescript-eslint/explicit-module-boundary-types": "off",
45-
"@typescript-eslint/no-non-null-assertion": "off",
4642
"@typescript-eslint/no-explicit-any": "off",
4743
"@typescript-eslint/no-floating-promises": ["error", { ignoreVoid: true }],
4844
"@typescript-eslint/no-invalid-this": "off",

0 commit comments

Comments
 (0)