Skip to content

no-boolean-attr-value 🔧

Detect values on boolean attributes.

Severity

warning

❌ Incorrect

html
<input type="text" disabled="disabled">

✅ Correct

html
<input type="text" disabled>

Reference

Configuration

json
{
  "rules": {
    "no-boolean-attr-value": "error"
  }
}

Released under the MIT License.