-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathno-eval.ts
33 lines (31 loc) · 952 Bytes
/
no-eval.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
import { isPageMethod } from '../utils/ast.js'
import { createRule } from '../utils/createRule.js'
export default createRule({
create(context) {
return {
CallExpression(node) {
const isEval = isPageMethod(node, '$eval')
if (isEval || isPageMethod(node, '$$eval')) {
context.report({
messageId: isEval ? 'noEval' : 'noEvalAll',
node: node.callee,
})
}
},
}
},
meta: {
docs: {
category: 'Possible Errors',
description:
'The use of `page.$eval` and `page.$$eval` are discouraged, use `locator.evaluate` or `locator.evaluateAll` instead',
recommended: true,
url: 'https://github.com/playwright-community/eslint-plugin-playwright/tree/main/docs/rules/no-eval.md',
},
messages: {
noEval: 'Unexpected use of page.$eval().',
noEvalAll: 'Unexpected use of page.$$eval().',
},
type: 'problem',
},
})