Add naming bool

This commit is contained in:
Charles-Axel Dein 2020-05-27 10:50:33 +02:00
parent 507a1ada2a
commit ab35cd3410

View File

@ -309,6 +309,11 @@ Biases don't only apply to hiring. For instance, the fundamental attribution bia
* We will not accept the stupid old lie about cleaning things up later.
* We will not believe the claim that quick means dirty.
* We will not allow anyone to force us to behave unprofessionally.
* [Tips on naming boolean variables](https://dev.to/michi/tips-on-naming-boolean-variables-cleaner-code-35ig)
* There is a convention to prefix boolean variables and function names with "is" or "has".
* Try to always use is, even for plurals (`isEachUserLoggedIn` is better than `areUsersLoggedIn` or `isUsersLoggedIn`)
* Avoid custom prefixes (`isPaidFor` is better than `wasPaidFor`)
* Avoid negatives (`isEnabled` is better than `isDisabled`)
### Computer science