Destricturing. Default indentation: ``` val ( ...
# codingconventions
m
Destricturing. Default indentation:
Copy code
val (
        distributor,
        items,
        shippingMethods,
        addresses,
        preferredAddressId
        ) = argument
I propose:
Copy code
val (
        distributor,
        items,
        shippingMethods,
        addresses,
        preferredAddressId
) = argument
y
if the formatter indents it like this, it's just a bug; please file YT issue
m
Ah, ok.
n
Why not align parentheses ?