# no-empty-character-class

禁止在正则表达式中使用空字符类

配置文件中的 "extends": "eslint:recommended" 属性启用了该规则

因为正则表达式中的空字符类不匹配任何内容,它们可能是输入错误。

var foo = /^abc[]/;

# 规则详情

此规则不允许在正则表达式中使用空字符类。

此规则的错误代码示例:

/*eslint no-empty-character-class: "error"*/

/^abc[]/.test("abcdefg"); // false
"abcdefg".match(/^abc[]/); // null

此规则的正确代码示例:

/*eslint no-empty-character-class: "error"*/

/^abc/.test("abcdefg"); // true
"abcdefg".match(/^abc/); // ["abc"]

/^abc[a-z]/.test("abcdefg"); // true
"abcdefg".match(/^abc[a-z]/); // ["abcd"]

# 已知限制

此规则不会在调用 RegExp 构造函数的字符串参数中报告空字符类。

此规则报告正确代码时的误报示例:

/*eslint no-empty-character-class: "error"*/

var abcNeverMatches = new RegExp("^abc[]");
Last Updated: 5/13/2023, 8:55:38 PM