Skip to content

deprecated-attr

Detect deprecated attributes.

Severity

error

❌ Incorrect

html
<img src="a.png" alt="x" align="left">

✅ Correct

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

Reference

Configuration

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

Released under the MIT License.