E.g. don't wrap like this:
(foo.bar.baz).and.bam(Blah.of({
}))But rather:
(foo.bar.baz)
.and.bam(Blah.of({})) Differential D36139
clang-format: [JS] prefer wrapping chains over empty literals. Authored by mprobst on Aug 1 2017, 4:46 AM.
Details E.g. don't wrap like this: (foo.bar.baz).and.bam(Blah.of({
}))But rather: (foo.bar.baz)
.and.bam(Blah.of({}))
Diff Detail
Event Timeline
| ||||||||||
Or just Left.opensScope() && Right.closesScope()?
Technically, that's probably not the same thing, but otherwise you have unmatched brackets and that's bad no matter what, no?