要求在@规则的分号之前必须有一个空格或不能有空白符。
@import "components/buttons";
/** ↑
* 这个分号之前的空白符 */
string
: "always"|"never"
"always"
在分号之前必须有一个空格。
以下模式被视为违规:
@import "components/buttons";
以下模式不被视为违规:
@import "components/buttons" ;
"never"
在分号之前不能有空格。
以下模式被视为违规:
@import "components/buttons" ;
以下模式不被视为违规:
@import "components/buttons";