A Reactjs coding style guide
This project is maintained by LinuxDevil
Distinguish names in such a way that the reader knows what the differences offer.
Bad:
function between<T>(a1: T, a2: T, a3: T): boolean {
return a2 <= a1 && a1 <= a3;
}
Good:
function between<T>(value: T, left: T, right: T): boolean {
return left <= value && value <= right;
}