Operators near newlines should be placed after, not before the newline.
In this example, the operator ‘+’ should not be at the end of the second line.
SELECT
a +
b
FROM foo
Place the operator after the newline.
SELECT
a
+ b
FROM foo