no-orphaned-end-tag
Warns when an end tag appears without a corresponding start tag, which constitutes an inner parse error in HTML Standard.
Note that while some tags (e.g., </br>
) exhibit special behaviors, this rule uniformly warns without exceptions.
❌ Examples of incorrect code for this rule
<div>
paragraph</br>with break</p>
</div>
✅ Examples of correct code for this rule
<div>
<p>paragraph<br />with break</p>
</div>
Interface
{
"no-orphaned-end-tag": boolean
}
Default Severity
error