File tree Expand file tree Collapse file tree 1 file changed +6
-7
lines changed
Expand file tree Collapse file tree 1 file changed +6
-7
lines changed Original file line number Diff line number Diff line change 1- #### Fix lwc quotes staying when ` embeddedLanguageFormatting ` is ` off ` in attribute values (#18383 by @kovsu )
1+ #### Avoid quote around interpolations (#18383 by @kovsu )
22
33<!-- prettier-ignore -->
44``` html
55<!-- Input -->
6- <div double-quoted =" {data}" single-quoted =' {data}'
7- unquoted ={data} > </div >
6+ <div foo ={bar} > </div >
87
9- <!-- Prettier stable -->
10- <div double-quoted =" {data} " single-quoted = " {data} " unquoted = " {data }" ></div >
8+ <!-- Prettier stable ( -- embedded-language-formatting off) -->
9+ <div foo =" {bar }" ></div >
1110
12- <!-- Prettier main -->
13- <div double-quoted = " {data} " single-quoted = " {data} " unquoted = {data } ></div >
11+ <!-- Prettier main ( -- embedded-language-formatting off) -->
12+ <div foo = {bar } ></div >
1413```
You can’t perform that action at this time.
0 commit comments