A Reactjs coding style guide
This project is maintained by LinuxDevil
Version control exists for a reason. Leave old code in your history.
Bad:
type User = {
name: string;
email: string;
// age: number;
// jobPosition: string;
};
Good:
type User = {
name: string;
email: string;
};