First off, thank you for considering contributing to SnippetShot! It's people like you that make the open-source community such a great place.
We welcome any type of contribution, not just code. You can help with:
- Reporting a bug
- Discussing the current state of the code
- Submitting a fix
- Proposing new features
- Becoming a maintainer
- Giving the repo a star
To get started, you'll need to have Node.js and npm installed.
- Fork the repository on GitHub.
- Clone your fork to your local machine:
git clone https://github.com/Bridgetamana/tailwindcss-migrator.git
- Navigate to the project directory:
cd tailwindcss-migrator - Install the dependencies:
npm install
- Run the extension in development mode:
- Open the project in VS Code.
- Press
F5to open a new VS Code window with the extension loaded.
- Create a new branch for your changes:
git checkout -b my-feature-branch
- Make your changes to the code.
- Test your changes to make sure they work as expected.
- Commit your changes with a clear and descriptive commit message:
git commit -m "feat: Add a new feature" - Push your changes to your fork:
git push origin my-feature-branch
- Open a pull request from your fork to the
mainbranch of the original repository.
- Please make sure your pull request has a clear and descriptive title and description.
- If your pull request addresses an open issue, please reference the issue number in the description (e.g.,
Closes #123). - Please make sure your code follows the existing code style.
- Please make sure your code is well-tested.