comment-pattern
指定註解的模式。
/* comment */
/** ↑
* The pattern of this */
message
次要選項 可以接受此規則的參數。
選項
正規表示法 | 字串
字串會轉換成正規表示法,如下所示 new RegExp(yourString)
— 因此請務必正確跳脫。
給定字串
"foo .+"
以下模式被視為問題
/*not starting with foo*/
a { color: red; }
以下模式不會被視為問題
/*foo at the beginning*/
a { color: red; }