#declaration-property-unit-blacklist

指定声明内禁用的属性和单位对的黑名单。

a { width: 100px; }
/** ↑         ↑
 * 这些属性和单位 */

#选项

object: { "unprefixed-property-name": ["array", "of", "units"] }

如果属性名称用 "/" 包围(例如 "/^animation/"),则将其解释为正则表达式。这允许方便的简写,例如:/^animation/ 将匹配 animationanimation-durationanimation-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; }