Closed
Description
I think it is pretty common in Vue templates (for example inside .vue
files, not in HTML page) to write self-closing component, for example: <ui-dropdown :options="options" />
. It also don't cause any potential issue since the component will be rendered in HTML even before being put in the DOM thanks to the template compiler.
It would be nice if the recommended config had an option set to the html-no-self-closing
rule to ignore non-HTML tags.
This should then be reported:
<div />
<ui-dropdown />
This shouldn't be reported:
<div></div>
<ui-dropdown />