selector-attribute-name-disallowed-list
Specify a list of disallowed attribute names.
[class~="foo"] {}
/** ↑
* This name */
The message
secondary option can accept the arguments of this rule.
Options
Array<string>
["array", "of", "attribute-names", "/regex/"]
Given:
{
"selector-attribute-name-disallowed-list": ["class", "id", "/^data-/"]
}
The following patterns are considered problems:
[class*="foo"] {}
[id~="bar"] {}
[data-foo*="bar"] {}
The following patterns are not considered problems:
[lang~="en-us"] {}
[target="_blank"] {}
[href$=".bar"] {}