Open
Description
Describe the bug
dprint-plugin-typescript version: 0.86.1
Input Code
forEach(arr, f =>
a()
&& b()
);
Expected Output
Maybe...
forEach(arr, f => a() && b());
forEach(
arr,
f => a() && b()
);
Actual Output
forEach(arr, f =>
a()
&& b());
Truthfully, I'm not sure what the bug is here, but it seems a little odd to me in the first code snippet that the paren would get moved up a line.
See also: microsoft/TypeScript#54820 (comment)