Skip to content

Latest commit

 

History

History
52 lines (37 loc) · 738 Bytes

CONTRIBUTING.md

File metadata and controls

52 lines (37 loc) · 738 Bytes

Contributing

How to contribute to Chaos.

  1. Fork the repository: Fork Chaos

  1. Create your feature branch:
    git checkout -b my-new-feature

  1. Make your changes.

  1. Follow these quality steps to ensure consistency:
    • Update and run tests:
      crystal spec -v --fail-fast
    • Format your code:
      crystal tool format
    • Update the documentation:
      crystal docs

  1. Commit your changes:
    git commit -am 'Add some feature'

  1. Push the branch:
    git push origin my-new-feature

  1. Create a new Pull Request.