Skip to content

aria-attr-valid-values

Validate ARIA attribute values.

Severity

warning

❌ Incorrect

html
<div aria-hidden="yes">x</div>

✅ Correct

html
<div aria-hidden="true">x</div>

Reference

Configuration

json
{
  "rules": {
    "aria-attr-valid-values": "error"
  }
}

Released under the MIT License.