Skip to content

Latest commit

 

History

History
42 lines (30 loc) · 1.26 KB

CONTRIBUTING.md

File metadata and controls

42 lines (30 loc) · 1.26 KB

Contributing

This guide outlines how you can contribute.

How to Contribute

  1. Fork the repository and clone it to your local machine.
  2. Create a new branch for your contribution:
   git checkout -b my-contribution
  1. Make your changes, following the coding conventions and best practices.
  2. Write tests to ensure the correctness of your changes.
  3. Commit your changes:
git commit -m "Add my contribution"
  1. Push your changes to be reviewed
git push origin my-contribution
  1. Open a pull request from your forked repository to the main project repository.
  2. Provide a descriptive title and detailed description of your changes in the pull request.
  3. Be responsive to any feedback or requests for modifications to your contribution.
  4. Once approved, your contribution will be merged into the main project repository.

Coding Conventions

Please follow these coding conventions to maintain a consistent and readable codebase:

  • Use meaningful variable and function names.
  • Write clear and concise comments.
  • Follow the established indentation style.
  • Use appropriate spacing and line breaks for readability.
  • Keep the codebase clean and free from unnecessary or commented-out code.
  • Write comprehensive tests for your code.