A Reactjs coding style guide
This project is maintained by LinuxDevil
Bad:
function getUserInfo(): User; function getUserDetails(): User; function getUserData(): User;
Good:
function getUser(): User;