comment-pattern
指定注释的模式。
/* comment */
/** ↑
* The pattern of this */
该 message
次要选项 可以接受此规则的参数。
选项
regex|string
字符串将被转换为 RegExp,如下所示 new RegExp(yourString)
— 因此请确保正确转义。
给定字符串
"foo .+"
以下模式被视为问题
/*not starting with foo*/
a { color: red; }
以下模式不被视为问题
/*foo at the beginning*/
a { color: red; }