I want all function parameters to be generated on a new line, like so:
fun test(
a: Int,
b: Int,
c: Int
)
How can I do this? At the moment the parameter lists wrap arbitrarily. I have an unknown number of function parameters to generate.