property-allowed-list
指定允许的属性列表。
a { display: block; }
/** ↑
* This property */
此规则忽略变量 ($sass
, @less
, --custom-property
)。
该 message
次要选项 可以接受此规则的参数。
选项
array|string|regex
: ["array", "of", /properties/, "regex"]|"property"|"/regex/"|/regex/
如果字符串用 "/"
括起来(例如 "/^background/"
),则将其解释为正则表达式。例如,这允许轻松地定位简写:/^background/
将匹配 background
、background-size
、background-color
等。
鉴于
["display", "animation", "/^background/"]
以下模式被视为问题
a { color: pink; }
a {
animation: my-animation 2s;
color: pink;
}
a { borkgrund: orange; }
以下模式不被视为问题
a { display: block; }
a { -webkit-animation: my-animation 2s; }
a {
animation: my-animation 2s;
-webkit-animation: my-animation 2s;
display: block;
}
a { background: pink; }
a { background-color: pink; }