Style Guide - skolakoda/programming-quotes GitHub Wiki

We are using a variant of JavaScript Standard Style, whitch main rules are:

  • No semicolons
  • 2 spaces for indentation
  • Single quotes for strings
  • Use === instead of == for comparisons

You can find our ESLint config file here, but if you are using pure JS Standard it's just fine.