regexp/no-invalid-regexp
💼 This rule is enabled in the following configs: 🟢 flat/recommended, 🔵 recommended.
disallow invalid regular expression strings in
RegExpconstructors
📖 Rule Details
This rule reports invalid regular expression patterns given to RegExp constructors.
Differences to ESLint's no-invalid-regexp rule
This rule is almost functionally equivalent to ESLint's no-invalid-regexp rule. The only difference is that this rule doesn't validate flags (see no-non-standard-flag).
There are two reasons we provide this rule:
Better error reporting.
Instead of reporting the whole invalid string, this rule will try to report the exact position of the syntax error.
Better support for complex constructor calls.
ESLint's rule only validates
RegExpconstructors called with simple string literals. This rule also supports operations (e.g. string concatenation) and variables to some degree.
🔧 Options
Nothing.
📚 Further reading
🚀 Version
This rule was introduced in eslint-plugin-regexp v1.0.0