Skip to content

heading-levels

Detect skipped heading levels.

Severity

error

❌ Incorrect

html
<h1>Title</h1>
<h3>Sub</h3>

✅ Correct

html
<h1>Title</h1>
<h2>Sub</h2>
<h3>SubSub</h3>

Reference

Configuration

json
{
  "rules": {
    "heading-levels": "error"
  }
}

Released under the MIT License.