Skip to content

Latest commit

 

History

History
19 lines (13 loc) · 451 Bytes

STYLE.rst

File metadata and controls

19 lines (13 loc) · 451 Bytes

Zamboni Style Guide

Writing code for zamboni? Awesome! Please help keep our code readable by, whenever possible, adhering to these style conventions.

Python

JavaScript

  • Soft tabs (4 space) indentation
  • Double quotes around strings (unless the string contains double quotes)
  • variable names for jQuery objects start with $. for example:

    var $el = $(el);