there’s no consensus even between the two style gu...
# codingconventions
a
there’s no consensus even between the two style guides that I know of • https://kotlinlang.org/docs/reference/coding-conventions.html#class-header-formattinghttps://developer.android.com/kotlin/style-guide#continuation_indent I prefer the Kotlin one personally 😄
m
IMO, Google should likely update to just point to the Kotlin style guide.
b
Use regular indent (4 spaces) for constructor parameters.
https://kotlinlang.org/docs/reference/coding-conventions.html#class-header-formatting
Functions
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).
https://developer.android.com/kotlin/style-guide#continuation_indent
They seem to be consistent in that aspect at least