We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 56bc0bc commit 7c28725Copy full SHA for 7c28725
1 file changed
.eslintrc.js
@@ -30,7 +30,18 @@ module.exports = {
30
],
31
rules: {
32
"jest/expect-expect": ["off"],
33
+ "no-fallthrough": ["error", { allowEmptyCase: true }],
34
"@typescript-eslint/no-var-requires": ["off"],
35
+ "@typescript-eslint/no-explicit-any": ["off"],
36
+ "@typescript-eslint/no-unused-vars": [
37
+ "error",
38
+ {
39
+ argsIgnorePattern: "^_",
40
+ varsIgnorePattern: "^_",
41
+ args: "after-used",
42
+ ignoreRestSiblings: true,
43
+ },
44
+ ],
45
},
46
overrides: [
47
// Rules for TypeScript only
0 commit comments