Skip to content

Commit 75ebbea

Browse files
Ignore some eslint rules to allow code generating
1 parent 88552e2 commit 75ebbea

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.eslintrc.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,15 @@
1818
"rules": {
1919
"no-prototype-builtins": "off",
2020
"no-useless-catch": "off",
21+
"prefer-const": "off",
22+
"no-var": "off",
2123
"@typescript-eslint/no-namespace": "off",
2224
"@typescript-eslint/no-explicit-any": "off",
2325
"@typescript-eslint/no-unused-vars": "off",
2426
"@typescript-eslint/no-var-requires": "off",
2527
"@typescript-eslint/no-inferrable-types": "off",
2628
"@typescript-eslint/no-array-constructor": "off",
27-
"@typescript-eslint/no-extra-semi": "off"
29+
"@typescript-eslint/no-extra-semi": "off",
30+
"@typescript-eslint/no-empty-function": "off"
2831
}
2932
}

0 commit comments

Comments
 (0)