it seems that the the default “continuation indent...
# codingconventions
d
it seems that the the default “continuation indent” should be 4 instead of 8 spaces https://github.com/android/kotlin-guides/issues/37
however in the IDE it seems that the default is 8, making it 4 is no longer “default”
Copy code
<codeStyleSettings language="kotlin">
  <option name="CODE_STYLE_DEFAULTS" value="KOTLIN_OFFICIAL" />
    <indentOptions>
      <option name="CONTINUATION_INDENT_SIZE" value="4" />
    </indentOptions>
  </codeStyleSettings>
 </code_scheme>
ah, I see that the Kotlin style guide differs from the Android one https://github.com/Kotlin/kotlin-style-guide/issues/38#issuecomment-355734988