Option to apply normal indent to children of 'if' expressions
This commit is contained in:
+18
@@ -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
|
||||
Reference in New Issue
Block a user