From 33b30bae5c203f7ca279d33098c7c1a61fff9ea9 Mon Sep 17 00:00:00 2001 From: Maxime Beauchamp <15185355+baktun14@users.noreply.github.com> Date: Wed, 25 Sep 2024 21:49:11 -0400 Subject: [PATCH] chore(dx): improve contribution guideline (#386) --- CONTRIBUTING.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index dd0948632..2c8d1a99d 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -42,6 +42,17 @@ feat(wallet): add a new function to compute wallet balance - **Include Unit Tests (When Applicable)**: Verifiable unit tests aid in maintaining code quality and prevent additional bugs from being introduced. - **Linting**: Run `npm run lint:fix` to make sure your code is properly formatted. +### Big Features + +For large features or significant changes: + +1. Create a fork of the main repository. +2. Implement your feature in small, incremental pull requests to your fork. +3. This allows us to gradually review the changes and provide guidance throughout the development process. +4. Once the feature is complete and has gone through the review process on the fork, we can then merge it into the main repository. + +This approach helps manage complex features more effectively and ensures that large changes are thoroughly reviewed before being integrated into the main codebase. + ### Contribution Process Overview If you're ready to contribute, follow our guidelines: