React-Style-Guide

A Reactjs coding style guide

This project is maintained by LinuxDevil

Use the same vocabulary for the same type of variable

Bad:

function getUserInfo(): User;
function getUserDetails(): User;
function getUserData(): User;

Good:

function getUser(): User;