1
0
mirror of https://github.com/thangisme/notes.git synced 2024-06-25 07:15:31 +00:00
notes/node_modules/stylelint/lib/rules/selector-attribute-brackets-space-inside
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

selector-attribute-brackets-space-inside

Require a single space or disallow whitespace on the inside of the brackets within attribute selectors.

    [ target=_blank ]
/** ↑               ↑
 * The space inside these two brackets */

Options

string: "always"|"never"

"always"

There must always be a single space inside the brackets.

The following patterns are considered warnings:

[target] {}
[ target] {}
[target ] {}
[target=_blank] {}
[ target=_blank] {}
[target=_blank ] {}

The following patterns are not considered warnings:

[ target ] {}
[ target=_blank ] {}

"never"

There must never be whitespace on the inside the brackets.

The following patterns are considered warnings:

[ target] {}
[target ] {}
[ target ] {}
[ target=_blank] {}
[target=_blank ] {}
[ target=_blank ] {}

The following patterns are not considered warnings:

[target] {}
[target=_blank] {}