We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 88552e2 commit 75ebbeaCopy full SHA for 75ebbea
.eslintrc.json
@@ -18,12 +18,15 @@
18
"rules": {
19
"no-prototype-builtins": "off",
20
"no-useless-catch": "off",
21
+ "prefer-const": "off",
22
+ "no-var": "off",
23
"@typescript-eslint/no-namespace": "off",
24
"@typescript-eslint/no-explicit-any": "off",
25
"@typescript-eslint/no-unused-vars": "off",
26
"@typescript-eslint/no-var-requires": "off",
27
"@typescript-eslint/no-inferrable-types": "off",
28
"@typescript-eslint/no-array-constructor": "off",
- "@typescript-eslint/no-extra-semi": "off"
29
+ "@typescript-eslint/no-extra-semi": "off",
30
+ "@typescript-eslint/no-empty-function": "off"
31
}
32
0 commit comments