I have a boolean expression: A && (B || C && D)
However A, B, C, and D are quite long character-wise so representing it all in a single line is not possible. Let us assume for this example that A, B, C, and D will be on their own lines.
What is a recommended way to represent this expression using indentations extra parenthesis if necessary, line breaks and so on to maximize human readability.