Skip to content

Latest commit

 

History

History
14 lines (10 loc) · 478 Bytes

CONTRIBUTING.md

File metadata and controls

14 lines (10 loc) · 478 Bytes

Contributing

Code Style Guide

  • code should be indented with 2 spaces
  • single quotes should be used where feasible
  • commas should be followed by a single space (function params, etc)
  • variable declaration should include var, no multiple declarations

Tests

  • tests should be added to the nodeunit configs in tests/
  • tests can be run with npm test
  • see existing tests for guidance