What prettier does (Angular):
<button
class="drop-down"
(click)="showMenuPopup()"
tabindex="-1">
<img src="assets/dots.svg" alt="↓" />
</button>
What I want it to do:
<button class="drop-down"
(click)="showMenuPopup()"
tabindex="-1">
<img src="assets/dots.svg" alt="↓" />
</button>
Is this possible?
asked Jun 24, 2025 at 20:32
fr0
1,2652 gold badges12 silver badges18 bronze badges
-
No, not with native Prettier alone. There is no official setting to change how attributes are aligned. Prettier deliberately avoids adding too many style knobsOmprakash S– Omprakash S2025年06月24日 21:22:22 +00:00Commented Jun 24, 2025 at 21:22
lang-js