Skip to content

Latest commit

 

History

History
27 lines (19 loc) · 818 Bytes

CONTRIBUTING.md

File metadata and controls

27 lines (19 loc) · 818 Bytes

Contributing to ENVied

Thank you for taking the time to contribute!

Create a Pull Request

  1. Fork the repository and create your branch from main.

  2. Install melos:

    dart pub global activate melos

  3. Install all dependencies:

    melos bs

  4. Squash your commits and ensure you are using conventional commits. Using conventional commits helps auto generate the changelog.

  5. If you’ve fixed a bug or added code that should be tested, add tests.

  6. Ensure the test suite passes:

    melos test

  7. If you've changed the public API, make sure to update/add documentation.

  8. Format your code

    melos format

  9. Analyze your code

    melos validate

  10. Create the Pull Request.

  11. Verify that all status checks are passing.