diff --git a/tools/rule-notices.ts b/tools/rule-notices.ts index 19a47bc8c..d73a09605 100644 --- a/tools/rule-notices.ts +++ b/tools/rule-notices.ts @@ -29,8 +29,6 @@ function getConfigsForRule(ruleName: string) { for (configName in configs) { const config = configs[configName]; - // eslint-disable-next-line @typescript-eslint/ban-ts-comment -- we don't have a static type for rule names - // @ts-ignore const value = config.rules[`jest/${ruleName}`]; const isEnabled = [2, 'error'].includes(value);