My coding rules:
- Versioning in git:
[major].[minor].[patch]-[build/beta/release]
- Javascript coding:
- structure
- use strict
- es6 – watch the shorthand functions
- I like airbnb except for string handling. I use both single/double quote
- modules to use
- webpack
- babel
- eslint
- sass
- directory structure
- main
- modules: for javascript modules I write
- public
- js: js scripts used in html
- views: html/ejs/etc goes here
- css
- data: data used with this project-spreadsheets, files, database schema
- structure