You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Expanding each attribute to a new line can make a file very long. It would be nice to only wrap the attributes that exceed the line length
Example
Before
<div><div><mat-table[dataSource]="dataSource"><ng-containermatColumnDef="name"><mat-header-cell*matHeaderCellDefname="some really long string value">
Column name
</mat-header-cell></mat-table></div></div>
After
<div><div><mat-table[dataSource]="dataSource"><ng-containermatColumnDef="name"><mat-header-cell*matHeaderCellDefname="some really long string value">
Column name
</mat-header-cell></mat-table></div></div>
The text was updated successfully, but these errors were encountered:
Expanding each attribute to a new line can make a file very long. It would be nice to only wrap the attributes that exceed the line length
Example
Before
After
The text was updated successfully, but these errors were encountered: