Skip to content

Instantly share code, notes, and snippets.

View mjschranz's full-sized avatar

Matthew Schranz mjschranz

  • Toronto, Ontario
View GitHub Profile
@rwaldron
rwaldron / style-guide.js
Created January 24, 2011 18:20
Writing Idiomatic JavaScript
1. Two space soft indents (fake tabs) OR tabs... BUT NEVER BOTH - DO NOT MIX
2. Whitespace, Parens, Braces, Linebreaks
if/else/for/while/try always have spaces, braces and multiple lines.
--------------------------------------------------------------------