Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 877 Bytes

CONTRIBUTING.md

File metadata and controls

28 lines (20 loc) · 877 Bytes

Contributing

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