Change IDE Kotlin code formatter to follow official recommendations
From https://developer.android.com/kotlin/style-guide
When a function signature does not fit on a single line, break each
parameter declaration onto its own line.Parameters defined in this
format should use a single indent (+4). The closing parenthesis ())
and return type are placed on their own line with no additional
indent.
fun <T> Iterable<T>.joinToString(
separator: CharSequence = ", ",
prefix: CharSequence = "",
postfix: CharSequence = ""
): String {
// …
}
Signed-off-by: Chris Narkiewicz <hello@ezaquarii.com>