Skip to content

Latest commit

 

History

History
44 lines (27 loc) · 1.61 KB

CONTRIBUTING.md

File metadata and controls

44 lines (27 loc) · 1.61 KB

Contributing to CVSCode

Welcome to CVSCode! We appreciate your interest in contributing to this project. Your contributions are essential to making CVSCode better. Please take a moment to review this guide before getting started.

How to Contribute

  1. Fork the repository to your GitHub account.

  2. Clone your fork to your local machine:

    git clone https://github.com/yourname/cvscode.git
  3. Create a new branch for your contribution:

    git checkout -b feature/your-feature
  4. Make your changes and commit them to your branch.

  5. Push your changes to your GitHub fork:

    git push origin feature/your-feature
  6. Open a pull request (PR) to the CVSCode repository. Please provide a clear title and description of your changes in the PR.

Code Style

We follow a consistent code style in CVSCode to maintain readability and maintainability. Make sure your code adheres to these style guidelines.

Testing

If your contribution includes code changes, ensure that you've added or updated tests to cover the new code or changes. Run the existing tests to verify that your changes do not break existing functionality.

Reporting Issues

If you encounter a bug or have an idea for an improvement, please create an issue with a detailed description of the problem or enhancement.

Contributor License

By contributing to this project, you agree to release your contributions under the terms of the MIT License.

Thank you for your support in making CVSCode better!