Skip to content
This repository has been archived by the owner on Mar 27, 2020. It is now read-only.

Latest commit

 

History

History
36 lines (25 loc) · 402 Bytes

CONTRIBUTING.md

File metadata and controls

36 lines (25 loc) · 402 Bytes

THANKS FOR CONTRIBUTING

Issue reports and pull requests are always welcome!

Code Style

  • Use Tab for indentation
  • Limit lines to 100 columns

Return Early

  • BAD
function foo() {
  if (x) {
    ...
  }
}
  • GOOD
function foo() {
  if (!x) {
    return;
  }

  ...
}

Keeps indentation levels down and makes more readable.