I have a question about Chains of fields and method calls.
We have this statement
If formatting on multiple lines, each field access or method call in the chain should be on its own line...
...and then two exceptions to that statement (if I understand correctly). The first is for cases where the first element is "too short" and causes the second element to float. Makes sense.
The second exception is the following:
Multi-line elements
If any element in a chain is formatted across multiple lines, then that element and any later elements must be on their own line. Earlier elements may be kept on a single line. E.g.,
a.b.c()?.d
.foo(
an_expr,
another_expr,
)
.bar
.baz
This seems like an arbitrary exception to the first statement. Why is the first line allowed to have multiple elements and not broken at .d? Or, why not allow the first line of a chain to contain multiple elements for any chain? Perhaps more elements on the first line should be allowed, but not preferred, for any chain.
I was not able to find rationale for this decision in #66. Sorry if I missed it.
I have a question about Chains of fields and method calls.
We have this statement
...and then two exceptions to that statement (if I understand correctly). The first is for cases where the first element is "too short" and causes the second element to float. Makes sense.
The second exception is the following:
This seems like an arbitrary exception to the first statement. Why is the first line allowed to have multiple elements and not broken at
.d? Or, why not allow the first line of a chain to contain multiple elements for any chain? Perhaps more elements on the first line should be allowed, but not preferred, for any chain.I was not able to find rationale for this decision in #66. Sorry if I missed it.