# selector-attribute-name-disallowed-list Specify a list of disallowed attribute names. ```css [class~="foo"] {} /** ↑ * This name */ ``` ## Options `array|string|regex`: `["array", "of", /names/ or "regex"]|"name"|/regex/` Given: ``` ["class", "id", "/^data-/"] ``` The following patterns are considered violations: ```css [class*="foo"] {} ``` ```css [id~="bar"] {} ``` ```css [data-foo*="bar"] {} ``` The following patterns are _not_ considered violations: ```css [lang~="en-us"] {} ``` ```css [target="_blank"] {} ``` ```css [href$=".bar"] {} ```