Skip to content

Latest commit

 

History

History
14 lines (11 loc) · 398 Bytes

File metadata and controls

14 lines (11 loc) · 398 Bytes

Fix shorthand properties formatting (#12993 by @sosukesuzuki, @fisker)

<!-- Input -->
<ng-container *ngTemplateOutlet="someTmpl; context: { app }"></ng-container>

<!-- Prettier stable -->
<ng-container
  *ngTemplateOutlet="someTmpl; context: { app: this.app }"
></ng-container>

<!-- Prettier main -->
<ng-container *ngTemplateOutlet="someTmpl; context: { app }"></ng-container>