Skip to content

no-hard-code-id

Detect hardcoded id attributes.

Severity

off

❌ Incorrect

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

✅ Correct

html
<div class="wrapper">text</div>

Reference

Configuration

json
{
  "rules": {
    "no-hard-code-id": "error"
  }
}

Released under the MIT License.