We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4e78c8a commit dc3b406Copy full SHA for dc3b406
src/rules/unbound-method.ts
@@ -48,6 +48,14 @@ export type MessageIds = 'unbound' | 'unboundWithoutThisAnnotation';
48
49
const DEFAULT_MESSAGE = 'This rule requires `@typescript-eslint/eslint-plugin`';
50
51
+// todo: remove these in new major
52
+declare module '@typescript-eslint/utils/ts-eslint' {
53
+ interface RuleMetaDataDocs {
54
+ requiresTypeChecking?: boolean;
55
+ recommended?: unknown;
56
+ }
57
+}
58
+
59
export default createRule<Options, MessageIds>({
60
defaultOptions: [{ ignoreStatic: false }],
61
...baseRule,
0 commit comments