We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d934d89 commit acad7e2Copy full SHA for acad7e2
.eslintrc.json
@@ -23,6 +23,7 @@
23
},
24
"rules": {
25
"no-var": "error",
26
- "@typescript-eslint/explicit-function-return-type": "off"
+ "@typescript-eslint/explicit-function-return-type": "off",
27
+ "@typescript-eslint/no-unused-vars": ["warn", { "argsIgnorePattern": "^_" }]
28
}
29
tools/generate-configs/index.ts
@@ -13,7 +13,6 @@ const getRecommendedRulesForTestingFramework = (
13
framework: SupportedTestingFramework
14
): LinterConfigRules =>
15
Object.entries(rules)
16
- // eslint-disable-next-line @typescript-eslint/no-unused-vars
17
.filter(([_, { meta: { docs } }]) =>
18
Boolean(docs.recommendedConfig[framework])
19
)
0 commit comments