We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1df18ce commit 0777298Copy full SHA for 0777298
1 file changed
changelog_unreleased/typescript/18197.md
@@ -0,0 +1,21 @@
1
+#### Remove extra empty line in union type (#18197 by @Dunqing)
2
+
3
+<!-- prettier-ignore -->
4
+```tsx
5
+// Input
6
+type SuperLongTypeNameLoremIpsumLoremIpsumBlaBlaBlaBlaBlaBlaBlaBlaBlaBlaBlaBla =
7
+ Fooo1000 | Baz2000 | BarLoooooooooooooooooooooooooooooooooooooooooooooooooLong;
8
9
+// Prettier stable
10
11
12
+ | Fooo1000
13
+ | Baz2000
14
+ | BarLoooooooooooooooooooooooooooooooooooooooooooooooooLong;
15
16
+// Prettier main
17
18
19
20
21
+```
0 commit comments