-
Notifications
You must be signed in to change notification settings - Fork 241
/
Copy pathunbound-method.ts
116 lines (97 loc) · 2.74 KB
/
unbound-method.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
import { TSESLint, TSESTree } from '@typescript-eslint/utils';
import { createRule, isExpectCall, parseExpectCall } from './utils';
const toThrowMatchers = [
'toThrow',
'toThrowError',
'toThrowErrorMatchingSnapshot',
'toThrowErrorMatchingInlineSnapshot',
];
const isJestExpectToThrowCall = (node: TSESTree.CallExpression) => {
if (!isExpectCall(node)) {
return false;
}
const { matcher } = parseExpectCall(node);
if (!matcher) {
return false;
}
return !toThrowMatchers.includes(matcher.name);
};
const baseRule = (() => {
try {
// eslint-disable-next-line @typescript-eslint/no-require-imports
const TSESLintPlugin = require('@typescript-eslint/eslint-plugin');
return TSESLintPlugin.rules['unbound-method'] as TSESLint.RuleModule<
MessageIds,
Options
>;
} catch (e: unknown) {
const error = e as { code: string };
if (error.code === 'MODULE_NOT_FOUND') {
return null;
}
throw error;
}
})();
const tryCreateBaseRule = (
context: Readonly<TSESLint.RuleContext<MessageIds, Options>>,
) => {
try {
return baseRule?.create(context);
} catch {
return null;
}
};
interface Config {
ignoreStatic: boolean;
}
export type Options = [Config];
export type MessageIds = 'unbound' | 'unboundWithoutThisAnnotation';
const DEFAULT_MESSAGE = 'This rule requires `@typescript-eslint/eslint-plugin`';
export default createRule<Options, MessageIds>({
defaultOptions: [{ ignoreStatic: false }],
...baseRule,
name: __filename,
meta: {
messages: {
// eslint-disable-next-line eslint-plugin/no-unused-message-ids
unbound: DEFAULT_MESSAGE,
// eslint-disable-next-line eslint-plugin/no-unused-message-ids
unboundWithoutThisAnnotation: DEFAULT_MESSAGE,
},
schema: [],
type: 'problem',
...baseRule?.meta,
docs: {
category: 'Best Practices',
description:
'Enforce unbound methods are called with their expected scope',
requiresTypeChecking: true,
...baseRule?.meta.docs,
recommended: false,
},
},
create(context) {
const baseSelectors = tryCreateBaseRule(context);
if (!baseSelectors) {
return {};
}
let inExpectToThrowCall = false;
return {
...baseSelectors,
CallExpression(node: TSESTree.CallExpression): void {
inExpectToThrowCall = isJestExpectToThrowCall(node);
},
'CallExpression:exit'(node: TSESTree.CallExpression): void {
if (inExpectToThrowCall && isJestExpectToThrowCall(node)) {
inExpectToThrowCall = false;
}
},
MemberExpression(node: TSESTree.MemberExpression): void {
if (inExpectToThrowCall) {
return;
}
baseSelectors.MemberExpression?.(node);
},
};
},
});