React Guide - TwoGears/hakomo-guides GitHub Wiki
Tools:
Do not:
- Use magic strings and magic numbers, instead use constants
//bad
const myType = 1;
myPost(myType);
// good
const myType = TYPES.THE_TYPE_I_NEED;
myPost(myType);
- Leave
console.log()
around the code. Once you are finished, remove it - Leave code with eslint errors. Fix all issues before continuing