~~ parameters.preferSingleLine: false ~~
== should keep parameters on multiple lines on multiple lines ==
const t = function test(
    p1,
    p2
)
{
}

[expect]
const t = function test(
    p1,
    p2,
) {
};

== should make multiline when the first param is on a different line ==
const t = function test(
    p1, p2, p3)
{
}

[expect]
const t = function test(
    p1,
    p2,
    p3,
) {
};
