We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 399e262 commit 9170fd6Copy full SHA for 9170fd6
.eslintrc.js
@@ -18,10 +18,12 @@ module.exports = {
18
"no-constant-condition": ["warn", { checkLoops: false }],
19
"no-useless-escape": "warn",
20
"no-console": "warn",
21
+ "no-var": "warn",
22
"valid-typeof": "warn", // "bigint" is not yet supported
- "no-return-await": "error",
23
- "prefer-const": "error",
24
- "guard-for-in": "error",
+ "no-return-await": "warn",
+ "prefer-const": "warn",
25
+ "guard-for-in": "warn",
26
+ "curly": "warn",
27
28
"@typescript-eslint/no-unused-vars":"warn",
29
"@typescript-eslint/array-type": ["error", "generic"],
0 commit comments