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 d9f5e87 commit daa8a4bCopy full SHA for daa8a4b
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