Skip to content

no-dup-class

Detect duplicate class names.

Severity

warning

❌ Incorrect

html
<div class="foo bar foo">x</div>

✅ Correct

html
<div class="foo bar">x</div>

Reference

Configuration

json
{
  "rules": {
    "no-dup-class": "error"
  }
}

Released under the MIT License.