BlazorGuidelines
BlazorGuidelines copied to clipboard
Align the attributes of HTML tags
To improve the reading of Razor pages, it is clearer to align with a line break the attributes of components or HTML tags
❌ :
<MudTextField T="string" MaxLength="200" @bind-Value="demoAccount.Email" InputType="InputType.Email" Label="Email" Margin="Margin.Dense" autocomplete="off" />
✅
<MudTextField T="string"
MaxLength="200"
@bind-Value="demoAccount.Email"
InputType="InputType.Email"
Label="Email"
Margin="Margin.Dense"
autocomplete="off" />
Yes. Good idea. Can you update the Readme.md with this improvement?