Code Smell 51 - Double Negatives
Maxi Contieri
Posted on December 24, 2020
Not operator is our friend. Not not operator is not our friend
Problems
- Readability
Solutions
- 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
Credits
Photo by Daniel Herron on Unsplash
It’s harder to read code than to write it.
Joel Spolsky
💖 💪 🙅 🚩
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.