The vue/html-indent eslint plugin defaults to zero indentation for closing brackets:
<div
class="example"
> <!--closing bracket non-indented-->
<p>Demo.</p>
</div>
html5.vim reindents the above to:
<div
class="example"
> <!--closing bracket becomes indented-->
<p>Demo.</p>
</div>
Is there a configuration option to have html5.vim's indenter keep the closing bracket on the same column as the opening bracket for a tag? The reindenting is flagged by the linter every time :-(
The vue/html-indent eslint plugin defaults to zero indentation for closing brackets:
html5.vim reindents the above to:
Is there a configuration option to have html5.vim's indenter keep the closing bracket on the same column as the opening bracket for a tag? The reindenting is flagged by the linter every time :-(