eslint-plugin-vue
eslint-plugin-vue copied to clipboard
How to remove empty line in html attributes
I wan't remove the empty line between <BTable
and :columns="columns"
, what can I do?
Thanks :)
<!-- Good -->
<BTable
:columns="columns"
:data="data"
:scroll="scroll"
:expandable="expandable"
/>
<!-- Bad -->
<BTable
:columns="columns"
:data="data"
:scroll="scroll"
:expandable="expandable"
/>