-
Notifications
You must be signed in to change notification settings - Fork 482
Contribution guidelines
techfort edited this page Dec 17, 2014
·
5 revisions
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.
- 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);- comma first
- avoid-semicolon-at-all-cost stupidity