Prettier-Java 2.9.2
Playground link
Prettier for JS
Input:
var search = a
.b()
.c() // found by inverting `RelevanceScore.fromCosineSimilarity`
.d();
Output:
var search =
a
.b()
.c()
// found by inverting `RelevanceScore.fromCosineSimilarity`
.d();
Expected behavior:
var search =
a
.b()
.c() // found by inverting `RelevanceScore.fromCosineSimilarity`
.d();
Also, note that this also differs from Prettier for JS in the placement of a but I don't know if that's a bug.
Prettier-Java 2.9.2
Playground link
Prettier for JS
Input:
Output:
Expected behavior:
Also, note that this also differs from Prettier for JS in the placement of
abut I don't know if that's a bug.