ansman
11/12/2024, 2:12 PMfoo
.bar {
...
}.baz {
...
}
whereas I want to format like this (so that you can remove an operator without affecting the closing }
):
foo
.bar {
...
}
.baz {
...
}
I can disable the "Chain method continuation" rule but then you get no enforcement at all. Has anyone solved the same issue?Paul Dingemans
11/12/2024, 4:57 PMansman
11/12/2024, 5:30 PMBruno Medeiros
11/14/2024, 7:00 AMBruno Medeiros
11/14/2024, 7:02 AM}.baz {
pollutes diffs in case the bar
statement changes to be a single line one, the row containing baz
will be marked as changed because its }
is mixed with the next element in the chain.