pageClass | sidebarDepth | title | description | since |
---|---|---|---|---|
rule-details |
0 |
regexp/no-useless-lazy |
disallow unnecessarily non-greedy quantifiers |
v0.10.0 |
💼 This rule is enabled in the ✅ plugin:regexp/recommended
config.
🔧 This rule is automatically fixable by the --fix
CLI option.
disallow unnecessarily non-greedy quantifiers
This rule reports lazy quantifiers that don't need to by lazy.
There are two reasons why a lazy quantifier doesn't have to lazy:
-
It's a constant quantifier (e.g.
a{3}?
). -
The quantifier is effectively possessive (e.g.
a+?b
).Whether a quantifier (let's call it q) is effectively possessive depends on the expression after it (let's call it e). q is effectively possessive if q cannot accept the character accepted by e and e cannot accept the characters accepted by q.
In the example above, the character
a
and the characterb
do not overlap. Therefore the quantifiera+
is possessive.Since an effectively possessive quantifier cannot give up characters to the expression after it, it doesn't matter whether the quantifier greedy or lazy. However, greedy quantifiers should be preferred because they require fewer characters to write and are easier to visually parse.
/* eslint regexp/no-useless-lazy: "error" */
/* ✓ GOOD */
var foo = /a*?/;
var foo = /a+?/;
var foo = /a{4,}?/;
var foo = /a{2,4}?/;
var foo = /a[\s\S]*?bar/;
/* ✗ BAD */
var foo = /a{1}?/;
var foo = /a{4}?/;
var foo = /a{2,2}?/;
var foo = /ab+?c/;
Nothing.
This rule was introduced in eslint-plugin-regexp v0.10.0