~~ lineWidth: 40, parameters.preferSingleLine: true ~~
== should not keep parameters on multiple lines on multiple lines ==
function test(
    p1,
    p2
)
{
}

[expect]
function test(p1, p2) {
}

== should not make multi-line when the first param is on a new line ==
function test(
    p1, p2, p3)
{
}

[expect]
function test(p1, p2, p3) {
}
