Skip to content

Latest commit

 

History

History
41 lines (24 loc) · 1.13 KB

CONTRIBUTING.md

File metadata and controls

41 lines (24 loc) · 1.13 KB

Contributing to Vrt-Cogs

Thank you for considering contributing to my projects! Here are some guidelines to help you get started.

How to Contribute

  1. Fork the repository and clone it to your local machine.

  2. Create a new branch for your feature or bugfix:

    git checkout -b feature/your-feature-name

  3. Make your changes and commit them with clear and concise messages.

  4. Push your changes to your forked repository:

    git push origin feature/your-feature-name

  5. Create a Pull Request from your branch to the main branch of this repository.

Code Style

  • Ensure your code is well-documented and includes docstrings.
  • Keep your code aligned with the style of the existing code.

Versioning

  • Bump the version of the cog for each change.
    • Use a minor version bump for new features.
    • Use a patch version bump for bug fixes.

Issues

  • Check existing issues before creating a new one.
  • Provide detailed information when reporting bugs or suggesting features.

License

By contributing, you agree that your contributions will be licensed under the MIT License.


Thank you for your contributions!