edbirmingham / network

Facilitates beneficial connections in a network of people.
Other
22 stars 45 forks source link

Coding Conventions #22

Open anthonycrumley opened 9 years ago

anthonycrumley commented 9 years ago

Determine coding conventions we will follow and reference them in the documentation. See also #3

ghouston commented 9 years ago

For the client side (angular.js) there are three style guides that are popular:

All of the guides provide good advise and best practices. These guides are living guides and they get updated frequently. Personally I favor John Papa's guide since I've used its guidance the longest.

For general Javascript style guides, the Google Style Guide and Airbnb Style Guide are good choices. Google's guide just focuses on Javascript; while AirBNB expands into related subjects. The Airbnb guide includes a nice list of Javascript resources.

anthonycrumley commented 9 years ago

@ghouston Thanks for the recommendations!!