Open
Description
Is it possible to only wrap html attributes when line reaches certain length of characters. The way it works in Phpstorm for example is that If I have something like this.
<div v-for="item in items" class="items">
<p>{{item.name}}</p>
</div>
Phpstorm formatter does not wrap the attributes but if my code looks something like this
<div v-for="item in items" class="items" v-if="items.notEmpty()" :class="{active: isActive} :key="item.id">
<p>{{item.name}}</p>
</div>
and line contains more then 100 characters then it will wrap the attributes and align them like so
<div v-for="item in items"
class="items"
v-if="items.notEmpty()"
:class="{active: isActive}
:key="item.id">
<p>{{item.name}}</p>
</div>