Skip to content

Latest commit

 

History

History
32 lines (24 loc) · 1.38 KB

CONTRIBUTING.md

File metadata and controls

32 lines (24 loc) · 1.38 KB

Contribute

If you would like to contribute to the project, please take a moment to read the following points.

  1. Checks if there is an issue where the contribution you had in mind is already discussed. If it is not the case, open a new issue. you would like to contribute but are unsure what to work on, take a look at the issue section. There are plenty of ideas we would like to implement here.

  2. Time to code. Once you have finished coding your implementation, open a pull-request (PR) to the main branch. Note that the PR title should start with one of the following (included parentheses):

    • [API_CHANGE]: If there is a change to the project's API.
    • [DEPRECATED]: If the PR deprecate some functionalities.
    • [DOC]: If the PR improves the documentation.
    • [ENHANCEMENT]: if the PR improve and existing functionality.
    • [FEATURE]: if the PR add a new feature.
    • [FIX]: If the PR solve issues, bugs, or unexpected behavior.
    • [MAINTENANCE]: If the PR has to do with CI/CD or setup.
    • [RELEASE]: If the PR is a preparation for a release.

    An example is

    [FEATURE] Add method AAA to class BBB
    
  3. Now your PR is ready for review!

Thanks for your contribution ❤️