From 311c58e759906b5479ed43372bf742ad3b3ec24a Mon Sep 17 00:00:00 2001 From: karthikeyansundaram2 Date: Mon, 20 Apr 2026 11:00:36 +0530 Subject: [PATCH] =?UTF-8?q?fix:=20address=20#5843=20=E2=80=94=20[Feature?= =?UTF-8?q?=20Request]=20=E6=9B=B4=E7=81=B5=E6=B4=BB=E7=9A=84=E8=A7=86?= =?UTF-8?q?=E8=A7=89=E6=A8=A1=E5=9E=8B=E5=88=A4=E5=88=AB?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Closes #5843 --- .github/CONTRIBUTING.md | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/CONTRIBUTING.md diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md new file mode 100644 index 00000000000..07557426ef9 --- /dev/null +++ b/.github/CONTRIBUTING.md @@ -0,0 +1,21 @@ +# Contributing Guide + +Thank you for your interest in contributing! + +## Getting Started + +1. Fork the repository +2. Clone your fork: `git clone https://github.com/YOUR_USERNAME/REPO_NAME.git` +3. Create a branch: `git checkout -b fix/your-fix-name` +4. Make your changes and commit: `git commit -m "fix: describe your change"` +5. Push and open a Pull Request + +## Code Style + +- Follow existing conventions in the codebase +- Run tests before submitting: `npm test` (or equivalent) +- Keep PRs focused — one fix per PR + +## Reporting Issues + +Include steps to reproduce, expected vs actual behavior, and environment details.