I have always written my boolean expressions like this:
if (!isValid) { // code }
But my new employer insists on the following style:
You are evaluating the variable, not false so the latter is not correct from a readability perspective. So I would personally stick with the first option.
false