Disallows duplicated classes on same element
- Rule ID:
- no-dup-class
- Category:
- HTML Syntax and concepts
- Standards:
- -
Prevents unnecessary duplication of class names.
Rule details
Examples of incorrect code for this rule:
<div class="foo bar foo"></div>
Examples of correct code for this rule:
<div class="foo bar"></div>