Skip to content

eslint/no-empty-character-class Correctness ​

✅ This rule is turned on by default.

What it does ​

Disallow empty character classes in regular expressions

Why is this bad? ​

Because empty character classes in regular expressions do not match anything, they might be typing mistakes.

Example ​

javascript
var foo = /^abc[]/;

References ​

Released under the MIT License.