We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 25e66d8 commit db7c588Copy full SHA for db7c588
src/configs/typescript.ts
@@ -10,6 +10,7 @@ const baseConfig: Linter.Config = {
10
"camelcase": "off",
11
"indent": "off",
12
"no-constant-condition": "off",
13
+ "no-loop-func": "off",
14
"no-unused-expressions": "off",
15
"no-unused-vars": "off",
16
"no-use-before-define": "off",
src/plugins/typescript.ts
@@ -85,6 +85,7 @@ export const settings: Linter.Config = {
85
trailingUnderscore: "forbid",
86
},
87
],
88
+ "@typescript-eslint/no-loop-func": "error",
89
"@typescript-eslint/no-throw-literal": "error",
90
"@typescript-eslint/no-unnecessary-condition": "error",
91
"@typescript-eslint/no-unsafe-assignment": "off",
0 commit comments