Skip to content

Contribution guidelines

techfort edited this page Dec 17, 2014 · 5 revisions

Contribution guidelines

Overview

We try our best to adhere to the airbnb javascript style guidelines.

If you spot non compliant code in our codebase do not hesitate to flag it or even submit a pull request.

We do not ask that you agree with our guidelines but if you want to contribute you will have to respect them.

DOs

  • Name callbacks, when possible try to declare them as functions that can be cached to save memory as well making your code more readable. i.e. instead of
result.filter(function () { /* ... */ });

try to do:

function doFilter(obj) {
  // ...
}
result.filter(doFilter);

DON'Ts

  • comma first
  • avoid-semicolon-at-all-cost stupidity

Clone this wiki locally