-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathoptimal-lookaround-quantifier.ts
81 lines (79 loc) · 3.16 KB
/
optimal-lookaround-quantifier.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
import { RuleTester } from "eslint"
import rule from "../../../lib/rules/optimal-lookaround-quantifier"
const tester = new RuleTester({
parserOptions: {
ecmaVersion: 2020,
sourceType: "module",
},
})
tester.run("optimal-lookaround-quantifier", rule as any, {
valid: [String.raw`/(?=(a*))\w+\1/`, `/(?<=a{4})/`, `/(?=a(?:(a)|b)*)/`],
invalid: [
{
code: `/(?=ba*)/`,
errors: [
{
message:
"The quantified expression 'a*' at the end of the expression tree should only be matched a constant number of times. The expression can be removed without affecting the lookaround.",
column: 6,
suggestions: [{ output: `/(?=b)/` }],
},
],
},
{
code: `/(?=(?:a|b|abc*))/`,
errors: [
{
message:
"The quantified expression 'c*' at the end of the expression tree should only be matched a constant number of times. The expression can be removed without affecting the lookaround.",
column: 14,
suggestions: [{ output: `/(?=(?:a|b|ab))/` }],
},
],
},
{
code: `/(?=(?:a|b|abc+))/`,
errors: [
{
message:
"The quantified expression 'c+' at the end of the expression tree should only be matched a constant number of times. The expression can be replaced with 'c' (no quantifier) without affecting the lookaround.",
column: 14,
suggestions: [{ output: `/(?=(?:a|b|abc))/` }],
},
],
},
{
code: `/(?=(?:a|b|abc{4,9}))/`,
errors: [
{
message:
"The quantified expression 'c{4,9}' at the end of the expression tree should only be matched a constant number of times. The expression can be replaced with 'c{4}' without affecting the lookaround.",
column: 14,
suggestions: [{ output: `/(?=(?:a|b|abc{4}))/` }],
},
],
},
{
code: `/(?<=[a-c]*)/`,
errors: [
{
message:
"The quantified expression '[a-c]*' at the start of the expression tree should only be matched a constant number of times. The expression can be removed without affecting the lookaround.",
column: 6,
suggestions: [{ output: `/(?<=)/` }],
},
],
},
{
code: `/(?<=(?:d|c)*ab)/`,
errors: [
{
message:
"The quantified expression '(?:d|c)*' at the start of the expression tree should only be matched a constant number of times. The expression can be removed without affecting the lookaround.",
column: 6,
suggestions: [{ output: `/(?<=ab)/` }],
},
],
},
],
})