unit-no-unknown
禁止使用未知单位。
a { width: 100pixels; }
/** ↑
* These units */
此规则认为 CSS 规范中定义的单位(包括编辑草案)是已知的。
该 message
次要选项 可以接受此规则的参数。
选项
true
以下模式被视为问题
a {
width: 10pixels;
}
a {
width: calc(10px + 10pixels);
}
以下模式 *不* 被视为问题
a {
width: 10px;
}
a {
width: 10Px;
}
a {
width: 10pX;
}
a {
width: calc(10px + 10px);
}
可选的次要选项
ignoreUnits: ["/regex/", /regex/, "string"]
给定
["/^--foo-/", "--bar"]
以下模式 *不* 被视为问题
a {
width: 10--foo--baz;
}
a {
width: 10--bar;
}
ignoreFunctions: ["/regex/", /regex/, "string"]
给定
["foo", "/^my-/", "/^YOUR-/i"]
以下模式 *不* 被视为问题
a {
width: foo(1x);
}
a {
width: my-func(1x);
}
a {
width: YoUr-func(1x);
}