Code Smell 51 - Double Negatives

mcsee

Maxi Contieri

Posted on December 24, 2020

Code Smell 51 - Double Negatives

Not operator is our friend. Not not operator is not our friend

Problems

  • Readability

Solutions

  1. Name your variables, methods and classes with positive names.

Sample Code

Wrong

Right

Detection

This is a semantic smell. We need to detect it on code reviews.

We can tell linters to check for Regular Expressions like !not or !isNot etc as a warning.

Tags

  • Readability

Conclusion

Double negation is a very basic rule we learn as junior developers.

There are lots of production systems filled with this smell.

We need to trust our test coverage and make safe renames and other refactors.

Relations

More info

Remove Double Negative

Boolean Methods

Credits

Photo by Daniel Herron on Unsplash


It’s harder to read code than to write it.

Joel Spolsky

💖 💪 🙅 🚩
mcsee
Maxi Contieri

Posted on December 24, 2020

Join Our Newsletter. No Spam, Only the good stuff.

Sign up to receive the latest update from our blog.

Related