-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathprefer-hooks-in-order.ts
65 lines (56 loc) · 1.66 KB
/
prefer-hooks-in-order.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
import { createRule } from '../utils/createRule.js'
import { isTypeOfFnCall, parseFnCall } from '../utils/parseFnCall.js'
const order = ['beforeAll', 'beforeEach', 'afterEach', 'afterAll']
export default createRule({
create(context) {
let previousHookIndex = -1
let inHook = false
return {
CallExpression(node) {
// Ignore everything that is passed into a hook
if (inHook) return
const call = parseFnCall(context, node)
if (call?.type !== 'hook') {
previousHookIndex = -1
return
}
inHook = true
const currentHook = call.name
const currentHookIndex = order.indexOf(currentHook)
if (currentHookIndex < previousHookIndex) {
context.report({
data: {
currentHook,
previousHook: order[previousHookIndex],
},
messageId: 'reorderHooks',
node,
})
return
}
previousHookIndex = currentHookIndex
},
'CallExpression:exit'(node) {
if (isTypeOfFnCall(context, node, ['hook'])) {
inHook = false
return
}
if (inHook) return
previousHookIndex = -1
},
}
},
meta: {
docs: {
category: 'Best Practices',
description: 'Prefer having hooks in a consistent order',
recommended: false,
url: 'https://github.com/playwright-community/eslint-plugin-playwright/tree/main/docs/rules/prefer-hooks-in-order.md',
},
messages: {
reorderHooks:
'`{{ currentHook }}` hooks should be before any `{{ previousHook }}` hooks',
},
type: 'suggestion',
},
})