1
0
mirror of https://github.com/thangisme/notes.git synced 2024-09-26 14:16:07 -04:00
notes/node_modules/stylelint/lib/rules/at-rule-name-space-after
Patrick Marsceill b7b0d0d7bf
Initial commit
2017-03-09 13:16:08 -05:00
..
index.js Initial commit 2017-03-09 13:16:08 -05:00
README.md Initial commit 2017-03-09 13:16:08 -05:00

at-rule-name-space-after

Require a single space after at-rule names.

@media (max-width: 600px) {}
/**   ↑
 * The space after at-rule names */

Options

string: "always"|"always-single-line"

"always"

There must always be a single space after at-rule names.

The following patterns are considered warnings:

@charset"UTF-8";
@media(min-width: 700px) {}
@media  (min-width: 700px) {}
@media 
(min-width: 700px) {}

The following patterns are not considered warnings:

@charset "UTF-8";
@import url("x.css");
@media (min-width: 700px) {}

"always-single-line"

There must always be a single space after at-rule names in single-line declaration blocks.

The following patterns are considered warnings:

@charset"UTF-8";
@media(min-width: 700px) {}
@media  (min-width: 700px) {}

The following patterns are not considered warnings:

@charset "UTF-8";
@import url("x.css");
@media (min-width: 700px) {}
@media 
(min-width: 700px) {}
@media(min-width: 700px) and
  (orientation: portrait) {}
@media
  (min-width: 700px) and
  (orientation: portrait) {}