nextcloud-android/.idea/codeStyles
Chris Narkiewicz 9613502253
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>
2020-05-30 15:49:50 +01:00
..
Project.xml Change IDE Kotlin code formatter to follow official recommendations 2020-05-30 15:49:50 +01:00
codeStyleConfig.xml export code style 2018-12-07 10:25:15 +01:00