Skip to content

required-attr

Detect missing required attributes.

Severity

error

❌ Incorrect

html
<img src="a.png">

✅ Correct

html
<img src="a.png" alt="photo">

Reference

Configuration

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

Released under the MIT License.