This repository was archived by the owner on Oct 16, 2018. It is now read-only.

Description
The style guide is currently silent about which of these is preferred:
someFunction(
someOtherFunction(
someThirdFunction(
param1,
param2,
param3)))
someFunction(
someOtherFunction(
someThirdFunction(
param1,
param2,
param3
)
)
)
The Google Java style guide mandates the first style and it'd be great if the Kotlin style guide was similarly specific. Doesn't matter to me which of the two styles it settles on, just that it picks one for consistency.