I'd like to customize the way Visual Studio auto formats Blazor/Razor components.
Usually, it formats wrapped tags like this:
<SomeComponentWithSomeRandomName @bind-Checked="@this.YesConfirmIt" @bind-Checked:after="AfterYesConfirmIt" PropExample1="zzz" PropExample2="zzz" PropExample3="zzz"> Yes, I confirm it.</SomeComponentWithSomeRandomName>Notice the auto format pushes the second line to after the name of the component. If the component has a large enough name we gain a disturbing gap every time you write a new property line. Also, if the screen is small, you have to constantly scroll horizontally when you are investigating issues.To complete this, the content is idented good, but differing from the property lines, colaborating with the mess of general aspect.
And I would like to format like this:
<SomeComponentWithSomeRandomName @bind-Checked="@this.YesConfirmIt" @bind-Checked:after="AfterYesConfirmIt" PropExample1="zzz" PropExample2="zzz" PropExample3="zzz"> Yes, I confirm it.</SomeComponentWithSomeRandomName>Is it possible?