tree: c91a400b31c267ab7ab4ed28a3638f3d088b975e [path history] [tgz]
  1. index.js
  2. README.md
node_modules/stylelint/lib/rules/selector-attribute-operator-space-before/README.md

selector-attribute-operator-space-before

Require a single space or disallow whitespace before operators within attribute selectors.

[target =_blank]
/**     ↑
 * The space before operator */

The --fix option on the command line can automatically fix all of the problems reported by this rule.

Options

string: "always"|"never"

"always"

There must always be a single space before the operator.

The following patterns are considered violations:

[target=_blank] {}
[target= _blank] {}
[target='_blank'] {}
[target="_blank"] {}
[target= '_blank'] {}
[target= "_blank"] {}

The following patterns are not considered violations:

[target] {}
[target =_blank] {}
[target ='_blank'] {}
[target ="_blank"] {}
[target = _blank] {}
[target = '_blank'] {}
[target = "_blank"] {}

"never"

There must never be a single space before the operator.

The following patterns are considered violations:

[target =_blank] {}
[target = _blank] {}
[target ='_blank'] {}
[target ="_blank"] {}
[target = '_blank'] {}
[target = "_blank"] {}

The following patterns are not considered violations:

[target] {}
[target=_blank] {}
[target='_blank'] {}
[target="_blank"] {}
[target= _blank] {}
[target= '_blank'] {}
[target= "_blank"] {}