This depends on https://reviews.llvm.org/D90246, but once that has landed
clang-format will no longer format code like this:
int
myfunction(
int param1, int param2, int param2)
{
...
}and instead create the following:
int
myfunction(int param1, int param2,
int param2)
{
...
}