禁止声明的 !important。
a { color: pink !important; }
/** ↑
* 这个 !important */
如果您期望总是使用 !important,例如您正在编写用户样式,您可以使用postcss-safe-important安全的添加。
true以下模式被视为违规:
a { color: pink !important; }
a { color: pink ! important; }
a { color: pink!important; }
以下模式不被视为违规:
a { color: pink; }