Skip to content
This repository has been archived by the owner on Aug 18, 2018. It is now read-only.

Code Guidelines

jbarnette edited this page Sep 12, 2010 · 10 revisions

Guidelines are guidelines, not laws. What’s important is consistency. Anybody’s welcome to change these, just get consensus and make sure all the existing code matches your new guideline.

Two spaces per indent.


// good
if (something)
  do_something();

// bad
if (something)
       do_something();

Clone this wiki locally