Skip to content

ineffective-attr

Detect attributes with no effect.

Severity

warning

❌ Incorrect

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

✅ Correct

html
<a href="/foo">link</a>

Reference

Configuration

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

Released under the MIT License.