Sha256: 87b9afd32a8a702674ab26e6abc1a9821abb78c872dc0bcdde36cf5338dda48c
Contents?: true
Size: 721 Bytes
Versions: 23
Compression:
Stored size: 721 Bytes
Contents
# selector-attribute-operator-whitelist Specify a whitelist of allowed attribute operators. <!-- prettier-ignore --> ```css [target="_blank"] {} /** ↑ * This operator */ ``` ## Options `array|string`: `["array", "of", "operators"]|"operator"` Given: ``` ["=", "|="] ``` The following patterns are considered violations: <!-- prettier-ignore --> ```css [class*="test"] {} ``` <!-- prettier-ignore --> ```css [title~="flower"] {} ``` <!-- prettier-ignore --> ```css [class^="top"] {} ``` The following patterns are _not_ considered violations: <!-- prettier-ignore --> ```css [target] {} ``` <!-- prettier-ignore --> ```css [target="_blank"] {} ``` <!-- prettier-ignore --> ```css [class|="top"] {} ```
Version data entries
23 entries across 23 versions & 1 rubygems