Coding Styles

GIT conventions

In general terms, we agree with almost everything said in this blog post about GIT conventions and so should you. We only add/differ the following:

Commits should try to be as simple (atomic) as possible, but not simpler. Meaning you should always be able to revert specific fixes, edits, updates, adds, and removes with git revert

Javascript

We use eslint to check our code for the coding styles specified in the .eslintrc file in the root of the app, you can configure your text editor to give you hints when you don’t follow the styles.

Stylesheets