We welcome contributions to the debricked VS Code extension project! To contribute, follow these steps:
- Fork the repository on GitHub.
- Clone your fork locally:
git clone https://github.com/your-username/VS-Code-extension.git cd VS-Code-extension
- Create a new branch for your feature or bug fix:
git checkout -b my-feature-branch
- Make your changes in the codebase.
- Run tests to ensure everything works:
npm run test
-
Commit your changes with a descriptive message:
git commit -m "Add new feature X" -
Push your branch to GitHub:
git push origin my-feature-branch
- Create a pull request from your branch to the
mainbranch in the original repository. - Ensure all checks pass and your code is reviewed.
For more details, refer to our Contribution Guidelines.