Skip to content

no-tabindex-on-dialog

Detect tabindex on dialog elements.

Severity

error

❌ Incorrect

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

✅ Correct

html
<dialog>x</dialog>

Reference

Configuration

json
{
  "rules": {
    "no-tabindex-on-dialog": "error"
  }
}

Released under the MIT License.