Skip to main content

unit-allowed-list

指定允许的单位列表。

¥Specify a list of allowed units.

a { width: 100px; }
/** ↑

* These units */

message 次要选项 可以接受该规则的参数。

¥The message secondary option can accept the arguments of this rule.

选项

¥Options

Array<string>

["array", "of", "units"]

鉴于:

¥Given:

{
"unit-allowed-list": ["px", "em", "deg"]
}

以下模式被视为问题:

¥The following patterns are considered problems:

a { width: 100%; }
a { font-size: 10rem; }
a { animation: animation-name 5s ease; }

以下模式不被视为问题:

¥The following patterns are not considered problems:

a { font-size: 1.2em; }
a { line-height: 1.2; }
a { height: 100px; }
a { height: 100PX; }
a { transform: rotate(30deg); }

可选的辅助选项

¥Optional secondary options

ignoreProperties

{ "ignoreProperties": { "unit": ["array", "of", "properties", "/regex/"] } }

忽略具有指定属性的声明值中的单位。

¥Ignore units in the values of declarations with the specified properties.

鉴于:

¥Given:

{
"unit-allowed-list": [
["px", "em"],
{
"ignoreProperties": {
"rem": ["line-height", "/^border/"],
"%": ["width"]
}
}
]
}

以下模式不被视为问题:

¥The following patterns are not considered problems:

a { line-height: 0.1rem; }
a { border-bottom-width: 6rem; }
a { width: 100%; }

以下模式被视为问题:

¥The following patterns are considered problems:

a { margin: 0 20rem; }
a { -moz-border-radius-topright: 20rem; }
a { height: 100%; }

ignoreFunctions

{ "ignoreFunctions": ["array", "of", "functions", "/regex/"] }

忽略指定函数内部的单元。

¥Ignore units that are inside of the specified functions.

鉴于:

¥Given:

{
"unit-allowed-list": [["px", "em"], { "ignoreFunctions": ["/^hsl/", "calc"] }]
}

以下模式不被视为问题:

¥The following patterns are not considered problems:

a {
border: 1px solid hsl(162deg, 51%, 35%, 0.8);
}
a {
background-image: linear-gradient(hsla(162deg, 51%, 35%, 0.8), hsla(62deg, 51%, 35%, 0.8));
}
a {
width: calc(100% - 10px);
}