length-zero-no-unit
禁止为零长度使用单位。
a { top: 0px; }
/** ↑↑
* This zero and this type of length unit */
长度指的是距离测量。长度是一个维度,它是一个紧跟在数字后面的单位标识符。但是,对于零长度,单位标识符是可选的。长度单位包括:em
、ex
、ch
、vw
、vh
、cm
、mm
、in
、pt
、pc
、px
、rem
、vmin
和 vmax
。
此规则忽略数学函数(例如 calc
)中的长度。
fix
选项 可以自动修复此规则报告的所有问题。
选项
true
以下模式被视为问题
a { top: 0px }
a { top: 0.000em }
以下模式不被视为问题
a { top: 0 } /* no unit */
a { transition-delay: 0s; } /* dimension */
a { top: 2in; }
a { top: 1.001vh }
可选的次要选项
ignore: ["custom-properties"]
"custom-properties"
忽略自定义属性中零长度的单位。
以下模式不被视为问题
a { --x: 0px; }
ignoreFunctions: ["/regex/", /regex/, "string"]
给定
["var", "/^--/"]
以下模式不被视为问题
a { top: var(--foo, 0px); }
a { top: --bar(0px); }