forked from jest-community/eslint-plugin-jest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathno-jest-import.ts
37 lines (36 loc) · 954 Bytes
/
no-jest-import.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
import { TSESTree } from '@typescript-eslint/utils';
import { createRule } from './utils';
export default createRule({
name: __filename,
meta: {
type: 'problem',
docs: {
description: 'Disallow importing Jest',
category: 'Best Practices',
recommended: 'error',
},
messages: {
unexpectedImport: `Do not import "jest". Jest is automatically in scope within every test file.`,
},
schema: [],
},
defaultOptions: [],
create(context) {
return {
'ImportDeclaration[source.value="jest"]'(
node: TSESTree.ImportDeclaration,
) {
context.report({ node, messageId: 'unexpectedImport' });
},
'CallExpression[callee.name="require"][arguments.0.value="jest"]'(
node: TSESTree.CallExpression,
) {
context.report({
loc: node.arguments[0].loc,
messageId: 'unexpectedImport',
node,
});
},
};
},
});