Coding Convention

General Convention

  • Generally, follow Airbnb style guide and Standard JS.

  • Not use semi colon.

  • 4 space indentation.

Database/Tables

  • Table name is snake case (e.g. customer_detail)

  • Table should have comment

  • Column name is camel case (e.g. paymentAmount)

  • Column should have comment

Node.js

  • Use common.js, not ES Module system.

  • Use vanilla JS.

React

  • Use vanilla JS.

  • Use plain CSS.

  • Use only function component.

Last updated