# Contributing to bridge-svelte First off, thank you for considering contributing to [Your Project Name]! It's people like you that make this project great. ## How to Contribute We follow the "Fork and Pull" model for contributions. Here's a quick rundown of the workflow: 1. **Fork the repository** on GitHub. 2. **Clone your fork** to your local machine: ```bash git clone [https://github.com/your-username/your-repository-name.git](https://github.com/your-username/your-repository-name.git) ``` 3. **Create a new branch** for your changes. Please use a descriptive name: ```bash git checkout -b feature/my-amazing-feature ``` 4. **Make your changes** and commit them with a clear, descriptive message. 5. **Push your branch** to your fork on GitHub: ```bash git push origin feature/my-amazing-feature ``` 6. **Open a Pull Request** from your branch to our `main` branch. ## Submitting a Pull Request When you open a pull request, please make sure your submission includes the following: * **A clear title** that summarizes the change (e.g., "Feat: Add support for dark mode"). * **A detailed description** of what you've done and why. If it fixes an existing issue, please reference it by number (e.g., "Fixes #123"). * **Ensure any relevant documentation is updated** with your changes. ## Our Pledge (Code of Conduct) To ensure a welcoming and safe environment for everyone, we ask all contributors to be **respectful, fair, and kind**. Please engage in discussions constructively and professionally. Harassment, trolling, or any form of harmful behavior—whether in comments, code, or issues—will not be tolerated. We are all here to build something great together. Thank you again for your contribution!