I have always written my boolean expressions like this:
if (!isValid) { // code }
But my new employer insists on the following style:
IMO the first one is much more readable while the second one more verbose.
I would surely go for the 1st one