Skip to content

Latest commit

 

History

History
58 lines (48 loc) · 1.88 KB

File metadata and controls

58 lines (48 loc) · 1.88 KB

Contributing to SnippetShot

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

Getting Started

To get started, you'll need to have Node.js and npm installed.

  1. Fork the repository on GitHub.
  2. Clone your fork to your local machine:
    git clone https://github.com/Bridgetamana/tailwindcss-migrator.git
  3. Navigate to the project directory:
    cd tailwindcss-migrator
  4. Install the dependencies:
    npm install
  5. Run the extension in development mode:
    • Open the project in VS Code.
    • Press F5 to open a new VS Code window with the extension loaded.

Making Changes

  1. Create a new branch for your changes:
    git checkout -b my-feature-branch
  2. Make your changes to the code.
  3. Test your changes to make sure they work as expected.
  4. Commit your changes with a clear and descriptive commit message:
    git commit -m "feat: Add a new feature"
  5. Push your changes to your fork:
    git push origin my-feature-branch
  6. Open a pull request from your fork to the main branch of the original repository.

Pull Request Guidelines

  • 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.