declaration-no-important
禁止在声明中使用 !important
。
a { color: pink !important; }
/** ↑
* This !important */
如果您始终希望在声明中使用 !important
,例如,如果您正在编写 用户样式,您可以使用 postcss-safe-important
安全地添加它们。
选项
true
以下模式被视为问题
a { color: pink !important; }
a { color: pink ! important; }
a { color: pink!important; }
以下模式不被视为问题
a { color: pink; }