Option to apply normal indent to children of 'if' expressions

This commit is contained in:
Dmitry Jemerov
2017-12-13 16:29:27 +01:00
parent 640bf22e4f
commit 79a509df7b
11 changed files with 124 additions and 8 deletions
+18
View File
@@ -0,0 +1,18 @@
fun foo() {
if ("abc" > "def" &&
"qqq" < "bbb" &&
"ddd" > "efg") {
println("foo")
}
}
fun foo() {
if (
"abc" > "def" &&
"qqq" < "bbb" &&
"ddd" > "efg") {
println("foo")
}
}
// SET_TRUE: CONTINUATION_INDENT_IN_IF_CONDITIONS