There was an error while loading. Please reload this page.
I'd like to say we follow Google's code conventions / style guidelines, but we don't adhere to them 100%.
CamelCase
prop_name
var_name
Not 1 letter unless it's a loop iterator
propertyName
varName
Please try to indent things properly so we can line up closings!
You can never have too many.
We aim for around 80 chars / line, but Barbara doesn't care AT ALL and will often go longer.
def fcn( param1, param2 )
ie. No space after fcn name, space between braces and params is optional
var foo = function( ) { // Curly brace goes on this line
}; // Curly brace gets it's own line - how lucky!
We try to mimic our directory structure in our URIs.
/s/shopify/beta is in /apps/sibt/shopify/templates/beta.html /admin/* is in /apps/admin/__.py /about is in /apps/homepage