Having a consistent style for code and similar aspects makes collaboration easier. Though there is nothing that enforces these things, intentionally so, spending some time to adhere to these styles will be beneficial in the long run.
- JS: Javascript is linted with ESLint and defined in
.eslintrc
.- The defined style extends from eslint:recommended but is more focal about single quotes for strings and using semicolons.
- Install the following ESLint plugins for Atom, Sublime Text, or others.
- Styles: SASS (and CSS) is linted with stylelint and defined in
.styleintrc
.- The defined style extends from stylelint-config-standard with a couple additions to how colors are defined.
- Install the following stylelint plugins for Atom, Sublime Text, or others.