naming-cheatsheet
naming-cheatsheet copied to clipboard
Comprehensive language-agnostic guidelines on variables naming. Home of the A/HC/LC pattern.
I'd suggest a convention regarding the use of singular/plurals if only I knew how to formulate it in English properly :) Hopefully, someone has a good English formulation to replace...
hi, Please put translated other languages in the readme.md file persian version: https://github.com/amirshnll/naming-cheatsheet
I think this parameters name violate "Avoid context duplication".
👋 hey, this is a great repo/cheatsheet, thanks for this! A couple points on your get/set examples, in short, they are confusing when compared with each other and conflicts with...
The words 'handler', 'callback', ... are often used to add a notion of where a variable/function is going to be used. However, this is _very_ much as useless as naming...
Was reviewing this, and though it'd make sense to add that it's common to see predicates like `isSomeKnownType()` :tada:
Thank you. This cheatsheet is very useful. If I understood the logic, my changes to README.md may be helpful. If not, sorry :) Also ... Could you add shouldUpdateComponent and...
This is a common thing I see, people trying to keep names short and using something like `user` referring to a user id, user email. This creates unnecessary work as...