in reply to bloated 'if' formatting

When I was a C coder I used to prefer
if ( condition && condition && condition ) # because I like the conditions all to line up on the left.
But now, if the conditions are particularly chunky, I have no qualms about doing
if ( condition && condition && condition )