For negated `if`s, I would instead of `if (!bool) ...
# announcements
e
For negated `if`s, I would instead of
if (!bool) { // A } else { // B }
, do
if (bool) { // B } else { // A }