You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
You knew this one was coming! In general you code is really clean and nice to read so well done :)
We've all heard the stat that developers end up reading code 80% of the time and for this reason it's super important every project has consistent formatting so setting up eslint and prettier should be one of the first things we do (it really helps people who may not be familiar with the project as well).
Wherever possible we want to reduce cognitive overload from things that could distract us from solving the important problems. Taking formatting off our hands is definitely one of those things!
As a matter of habit it's good to remove console logs you don't need before pushing code to master. You can even set up eslint so that it stops you commiting if your staged code contains any!
The text was updated successfully, but these errors were encountered:
You knew this one was coming! In general you code is really clean and nice to read so well done :)
We've all heard the stat that developers end up reading code 80% of the time and for this reason it's super important every project has consistent formatting so setting up eslint and prettier should be one of the first things we do (it really helps people who may not be familiar with the project as well).
Wherever possible we want to reduce cognitive overload from things that could distract us from solving the important problems. Taking formatting off our hands is definitely one of those things!
As a matter of habit it's good to remove console logs you don't need before pushing code to master. You can even set up eslint so that it stops you commiting if your staged code contains any!
The text was updated successfully, but these errors were encountered: