Linter Rule: Disallow self-closing tag syntax for void elements
Rule: html-no-self-closing
Description
Disallow self-closing syntax (<tag />
) in HTML for all elements.
In HTML5, the trailing slash in a start tag is obsolete and has no effect. Non-void elements require explicit end tags, and void elements are self-contained without the slash.
Rationale
Self-closing syntax is an XHTML artifact. In HTML:
- On non-void elements, it’s a parse error and produces invalid markup (
<div />
is invalid). - On void elements, the slash is ignored and unnecessary (
<input />
is equivalent to<input>
).
Removing the slash ensures HTML5-compliant, cleaner markup and avoids mixing XHTML and HTML styles.
Examples
✅ Good
html
<span></span>
<div></div>
<section></section>
<custom-element></custom-element>
<img src="/logo.png" alt="Logo">
<input type="text">
<br>
<hr>
🚫 Bad
html
<span />
<div />
<section />
<custom-element />
<img src="/logo.png" alt="Logo" />
<input type="text" />
<br />
<hr />