Require a newline after at-rule names.
@media
/*↑*/ (max-width: 600px) {}
/** ↑
* The newline after this at-rule name */string: "always"|"always-multi-line"
There must always be a newline after at-rule names.
The following patterns are considered warnings:
@charset "UTF-8";@media (min-width: 700px) and
(orientation: landscape) { }The following patterns are not considered warnings:
@charset
"UTF-8";@import
"x.css" screen and
(orientation:landscape);@media
(min-width: 700px) and (orientation: landscape) { }@media
(min-width: 700px) and
(orientation: landscape) { }There must always be a newline after at-rule names in multiline-line at-rule blocks.
The following patterns are considered warnings:
@import "x.css" screen and
(orientation:landscape);@media (min-width: 700px) and
(orientation: landscape) { }The following patterns are not considered warnings:
@charset "UTF-8";@charset
"UTF-8";@import "x.css" screen and (orientation:landscape);@media (min-width: 700px) and (orientation: landscape) { }@media
(min-width: 700px) and
(orientation: landscape) { }