declaration-property-unit-disallowed-list
指定声明中不允许的属性和单位对列表。
a { width: 100px; }
/** ↑ ↑
* These properties and these units */
该message
辅助选项可以接受此规则的参数。
选项
object
: { "unprefixed-property-name": ["array", "of", "units"]|"unit" }
如果属性名称用"/"
包围(例如"/^animation/"
),则将其解释为正则表达式。例如,这允许轻松地定位简写:/^animation/
将匹配animation
、animation-duration
、animation-timing-function
等。
鉴于
{
"font-size": ["em", "px"],
"/^animation/": "s"
}
以下模式被认为是问题
a { font-size: 1em; }
a { animation: animation-name 5s ease; }
a { -webkit-animation: animation-name 5s ease; }
a { animation-duration: 5s; }
以下模式不被认为是问题
a { font-size: 1.2rem; }
a { height: 100px; }
a { animation: animation-name 500ms ease; }
a { -webkit-animation: animation-name 500ms ease; }
a { animation-duration: 500ms; }