Closed TheJaredWilcurt closed 2 weeks ago
Defaults to 1. Determines how many attributes are allowed on the same line as the starting tag. Accepts any whole number starting from 0.
1
<!-- global.vueSnapshots.formatting.attributesPerLine = 0; --> <span></span> <span class="cow dog" ></span> <span class="cow dog" id="animals" ></span> <span class="cow dog" id="animals" title="Moo" ></span>
<!-- global.vueSnapshots.formatting.attributesPerLine = 1; --> <span></span> <span class="cow dog"></span> <span class="cow dog" id="animals" ></span> <span class="cow dog" id="animals" title="Moo" ></span>
<!-- global.vueSnapshots.formatting.attributesPerLine = 2; --> <span></span> <span class="cow dog"></span> <span class="cow dog" id="animals"></span> <span class="cow dog" id="animals" title="Moo" ></span>
<!-- global.vueSnapshots.formatting.attributesPerLine = 3; --> <span></span> <span class="cow dog"></span> <span class="cow dog" id="animals"></span> <span class="cow dog" id="animals" title="Moo"></span>
I am starting with this. @TheJaredWilcurt
Attributes per line
Defaults to
1
. Determines how many attributes are allowed on the same line as the starting tag. Accepts any whole number starting from 0.