~~ lineWidth: 60 ~~
== should make parameters multi-line when they collectively exceed the line width ==
export function test(param1: string, param2: number, t: string) {
}

[expect]
export function test(
    param1: string,
    param2: number,
    t: string
) {
}
