Require a single space or disallow whitespace after the commas of media query lists.
@media screen and (color), projection and (color) {}
/** ↑
* These commas */
命令行中的 --fix
选项可以自动修复此规则报告的所有问题。
string
: "always"|"never"|"always-single-line"|"never-single-line"
There must always be a single space after the commas.
以下模式被视为违规:
@media screen and (color),projection and (color) {}
@media screen and (color)
,projection and (color) {}
以下模式不被视为违规:
@media screen and (color), projection and (color) {}
@media screen and (color)
, projection and (color) {}
There must never be whitespace after the commas.
以下模式被视为违规:
@media screen and (color), projection and (color) {}
@media screen and (color)
, projection and (color) {}
以下模式不被视为违规:
@media screen and (color),projection and (color) {}
@media screen and (color)
,projection and (color) {}
There must always be a single space after the commas in single-line media query lists.
以下模式被视为违规:
@media screen and (color),projection and (color) {}
以下模式不被视为违规:
@media screen and (color), projection and (color) {}
@media screen and (color)
, projection and (color) {}
@media screen and (color)
,projection and (color) {}
There must never be whitespace after the commas in single-line media query lists.
以下模式被视为违规:
@media screen and (color), projection and (color) {}
以下模式不被视为违规:
@media screen and (color),projection and (color) {}
@media screen and (color)
,projection and (color) {}
@media screen and (color)
, projection and (color) {}