Skip to content

no-positive-tabindex

Detect positive tabindex values.

Severity

warning

❌ Incorrect

html
<div tabindex="5">x</div>

✅ Correct

html
<div tabindex="0">x</div>

Reference

Configuration

json
{
  "rules": {
    "no-positive-tabindex": "error"
  }
}

Released under the MIT License.