Contributing

October 9, 2016 ยท View on GitHub

Do not violate DRY.

Follow 4 rules of simple design:

  • Passes the tests
  • Reveals intention
  • No duplication
  • Fewest elements

Please follow Boy Scout Rule.

Adding new assertion

Please add documentation in readme explaining what it does and code example.

Basics

  1. Create issue or address an existing
  2. Fork it!
  3. Create your feature branch (git checkout -b my-new-feature)
  4. Write tests and passes the linting set
  5. Run the npm test before committing
  6. Commit your changes (git commit -am 'Add some feature')
  7. Push to the branch (git push origin my-new-feature)
  8. Create new Pull Request
  9. Reference the issue you're solving