Operator Linebreak

There are currently two styles of formatting operator line breaks and no ESlint rule either way. There is

const foo = bar &&
    baz &&
    qux;

as well as

const foo = bar
    && baz
    && qux;

More examples can be found here.

It's a fairly minor formatting thing, but it's something we should choose one way or the other regardless.

Edited by brickode