at-rule-semicolon-space-before
警告
此规则已弃用,并将在将来删除。 参见 迁移指南。
at 规则的分号之前需要一个空格或不允许有空格。
@import "components/buttons";
/** ↑
* The space before this semicolon */
选项
string
: "always"|"never"
"always"
分号之前必须始终有一个空格。
以下模式被认为是一个问题:
@import "components/buttons";
以下模式不被视为问题:
@import "components/buttons" ;
"never"
分号之前绝对不能有一个空格。
以下模式被认为是一个问题:
@import "components/buttons" ;
以下模式不被视为问题:
@import "components/buttons";