Prettier-Java 2.9.2
Playground link
# Options (if any):
--print-width 30
Input:
api.a(
b,
c,
null,
d
).blockingForEach();
Output:
api.a(
b,
c,
null,
d
).blockingForEach();
Expected behavior:
api
.a(b, c, null, d)
.blockingForEach();
Prettier for JS does the correct thing.
Prettier-Java 2.9.2
Playground link
# Options (if any): --print-width 30Input:
Output:
Expected behavior:
Prettier for JS does the correct thing.