selector-pseudo-class-disallowed-list
指定一个不允许的伪类选择器列表。
a:hover {}
/** ↑
* This pseudo-class selector */
此规则忽略使用变量插值的選擇器,例如 :#{$variable} {}
。
该 message
次要选项 可以接受此规则的参数。
选项
array|string|regex
: ["array", "of", "unprefixed", /pseudo-classes/, "/regex/"]|"pseudo-class"|"/regex/"|/regex/
如果字符串用 "/"
包围(例如 "/^nth-/"
),则将其解释为正则表达式。例如,这允许轻松地针对简写:/^nth-/
将匹配 nth-child
、nth-last-child
、nth-of-type
等。
鉴于
["hover", "/^nth-/"]
以下模式被视为问题
a:hover {}
a:nth-of-type(5) {}
a:nth-child(2) {}
以下模式 *不* 被视为问题
a:focus {}
a:first-of-type {}