Skip to content
Mikey Saugstad edited this page Jul 23, 2019 · 13 revisions

General guidelines

  1. Keep lines <=120 characters long whenever it doesn't negatively impact readability.
  2. Comments should start with a space and a capital letter, and they should end with a period.
    // This is the correct style.
    //this is incorrect
    
  3. Use spaces instead of tabs.
  4. End all files with a newline character. You can tell if you did not by looking at your PR on Github.

JavaScript guidelines

  1. If you are adding new JavaScript files, try to use ECMA6 instead of ECMA5. However, most of our code was written using ECMA5, and if you are editing a file that is entirely written using ECMA5, keep with that standard in your edits.
  2. If you are declaring multiple variables, add a var on each line:
    var do;
    var this;
    
    var not,
        this;
    

Scala guidelines

PostgreSQl guildelines