Issue reports and pull requests are always welcome!
- Use Tab for indentation
- Limit lines to 100 columns
- BAD
function foo() {
if (x) {
...
}
}
- GOOD
function foo() {
if (!x) {
return;
}
...
}
Keeps indentation levels down and makes more readable.