We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c2aef70 commit 6402971Copy full SHA for 6402971
2 files changed
tests/specs/jsx/JsxElement/JsxElement_Spaces.txt
@@ -6,11 +6,11 @@ const t = <div>{t} {u} {v}</div>;
6
[expect]
7
const t = <div>{t} {u} {v}</div>;
8
9
-== should remove spaces surrounding ==
+== should keep spaces surrounding ==
10
const t = <div> test </div>;
11
12
13
-const t = <div>test</div>;
+const t = <div> test </div>;
14
15
== should handle a space when exceeding the line width with only the parent when the parent and children are on the same line ==
16
const t = <div>{test} {testsdffffffffffff}</div>;
tests/specs/jsx/JsxText/JsxText_All.txt
@@ -4,7 +4,7 @@
4
const t = <> Testing this out </>;
5
-const t = <>Testing this out</>;
+const t = <> Testing this out </>;
== should format when multi line ==
const t = <>
0 commit comments