Skip to content

no-orphaned-end-tag

Detect unmatched closing tags.

Severity

error

❌ Incorrect

html
</span>

✅ Correct

html
<span>text</span>

Reference

Configuration

json
{
  "rules": {
    "no-orphaned-end-tag": "error"
  }
}

Released under the MIT License.