no-empty-character-class 禁止在正则表达式中使用空字符类,因为正则表达式中的空字符类不匹配任何内容,它们可能是输入错误。
/*eslint no-empty-character-class: "error"*//^abc[]/.test("abcdefg");// false"abcdefg".match(/^abc[]/);// null Examples ofcorrectcode for this rule: 正确代码示例: /*eslint no-empty-character-class: "error"*//^abc/.test("abcdefg");// true"abcdefg".match(/^abc/);// ["abc...