Open
Description
Motivation
More readable multiline attribute blocks.
Description
When an attribute gets long, particularly spanning multiple lines, IMO it's not very readable to have them (start) on the same line as the prop or directive.
Examples
<!-- ✓ GOOD -->
<Foo
on:click={
() => {
foo = bar
}
}
/>
<!-- ✗ BAD -->
<Foo
on:click={() => {
foo = bar
}}
/>
Additional comments
No response