Skip to content

label-has-control

Detect label without associated control.

Severity

error

❌ Incorrect

html
<label>Name</label>

✅ Correct

html
<label for="name">Name</label>
<input id="name" type="text">

Reference

Configuration

json
{
  "rules": {
    "label-has-control": "error"
  }
}

Released under the MIT License.