Skip to content

invalid-attr

Detect attributes not in the spec.

Severity

error

❌ Incorrect

html
<div href="/foo">text</div>

✅ Correct

html
<div data-id="123">text</div>

Reference

Configuration

json
{
  "rules": {
    "invalid-attr": "error"
  }
}

Released under the MIT License.