Skip to content

valid-id

Require valid id values (non-empty, no whitespace).

Severity

error

❌ Incorrect

html
<div id="">text</div>

✅ Correct

html
<div id="valid-id">text</div>

Reference

Configuration

json
{
  "rules": {
    "valid-id": "error"
  }
}

Released under the MIT License.