We welcome contributions! To get started:
Click the Fork button in the top right corner of this repo to create your own copy under your GitHub account.
git clone https://github.com/<your-username>/StressLess.git
cd StressLessSet the original repository as the upstream remote to pull in future changes:
git remote add upstream https://github.com/StressLess-Team/StressLess/
git fetch upstreamAlways work in a new branch for your feature or fix:
git checkout -b feat/your-feature-nameEdit the code, commit your changes:
git add .
git commit -m "Add: brief description of what you changed"Follow the Prettier and ESLint guidelines to ensure consistent formatting and styling.
git push origin your-feature-name- Go to your fork on GitHub.
- You’ll see a "Compare & pull request" button. Click it.
- Provide a clear description of what you’ve changed and why.
- Submit the pull request to the
developmentbranch of the original repository.
✅ Note: Make sure your code passes all CI checks and has been tested locally before opening a PR.
- A team member will review your PR and may request changes.
- Once approved, your changes will be merged!