指定允许的单位的白名单。
a { width: 100px; }
/** ↑
* 这个单位 */
array|string
: ["array", "of", "units"]|"unit"
给定:
["px", "em", "deg"]
以下模式被视为违规:
a { width: 100%; }
a { font-size: 10rem; }
a { animation: animation-name 5s ease; }
以下模式不被视为违规:
a { font-size: 1.2em; }
a { line-height: 1.2; }
a { height: 100px; }
a { height: 100PX; }
a { transform: rotate(30deg); }
ignoreProperties: { unit: ["property", "/regex/", /regex/] }
忽略指定属性的声明中值的单位。
例如,使用 ["px", "em"]
。
给定:
{
"rem": [ "line-height", "/^border/" ],
"%": [ "width" ]
}
以下模式不被视为违规:
a { line-height: 0.1rem; }
a { border-bottom-width: 6rem; }
a { width: 100%; }
以下模式被视为违规:
a { margin: 0 20rem; }
a { -moz-border-radius-topright: 20rem; }
a { height: 100%; }