跳至主要内容

number-max-precision

限制数字中允许的小数位数。

a { top: 3.245634px; }
/** ↑
* This decimal place */

message辅助选项可以接受此规则的参数。

选项

int: 允许的最大小数位数。

例如,使用 2

以下模式被认为是问题

a { top: 3.245px; }
a { top: 3.245634px; }
@media (min-width: 3.234em) {}

以下模式不被认为是问题

a { top: 3.24px; }
@media (min-width: 3.23em) {}

可选辅助选项

ignoreProperties: ["/regex/", /regex/, "string"]

忽略指定属性的数字精度。

例如,使用 0

给定

["transition"]

以下模式被认为是问题

a { top: 10.5px; }

以下模式不被认为是问题

a { transition: all 4.5s ease; }

ignoreUnits: ["/regex/", /regex/, "string"]

忽略具有指定单位的值的数字精度。

例如,使用 2

给定

["/^my-/", "%"]

以下模式被认为是问题

a { top: 3.245px; }
a { top: 3.245634px; }
@media (min-width: 3.234em) {}

以下模式不被认为是问题

a { top: 3.245%; }
@media (min-width: 3.23em) {}
a {
width: 10.5432%;
}
a { top: 3.245my-unit; }
a {
width: 10.989my-other-unit;
}

insideFunctions: {"/regex/": int, /regex/: int, "string": int}

insideFunctions选项可以更改指定函数的主选项值。

例如,使用 2

给定

{"/^(oklch|oklab|lch|lab)$/", 4}

以下模式被认为是问题

a { color: rgb(127.333 0 0); }
a { color: rgb(calc(127.333 / 3) 0 0); }

以下模式不被认为是问题

a { color: oklch(0.333 0 0); }
a { color: lab(0.3333 0 0); }
a { color: oklab(calc(127.333 / 3) 0 0); }