Sha256: cac3d45d9905af6a1714ba95a3c682d8a44a8749166fd87bdd7b987bed8d241d
Contents?: true
Size: 606 Bytes
Versions: 23
Compression:
Stored size: 606 Bytes
Contents
# selector-attribute-operator-blacklist Specify a blacklist of disallowed 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"] {} ``` 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