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; }