Skip to content

Latest commit

 

History

History
18 lines (14 loc) · 403 Bytes

File metadata and controls

18 lines (14 loc) · 403 Bytes

Allow self-closing tags on custom elements (#14170 by @fisker)

See Angular v15.1.0 release note for details.

// Input
<app-test/>

// Prettier stable
SyntaxError: Only void and foreign elements can be self closed "app-test" (1:1)
> 1 | <app-test/>
    | ^^^^^^^^^
  2 |

// Prettier main
<app-test />