Skip to content

Latest commit

 

History

History
46 lines (34 loc) · 437 Bytes

File metadata and controls

46 lines (34 loc) · 437 Bytes

selector-no-attribute

Disallow attribute selectors.

   a[rel="external"] {}
/** ↑
 * This type of selector */

The following patterns are considered warnings:

[foo] {}
a[rel="external"] {}
a,
.foo[type="text"] {}
a > [foo] {}

The following patterns are not considered warnings:

.foo {}
#foo {}
.bar > #foo {}
#foo.bar {}