From 2c54e2489a0fe0d7035950fc5933a23a2dc92178 Mon Sep 17 00:00:00 2001 From: Ayush Singh Date: Wed, 25 Mar 2026 22:41:38 +0530 Subject: [PATCH] Add common mistakes section to CONTRIBUTING.md Added a section on common mistakes to avoid when contributing. --- CONTRIBUTING.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 3d9ee2550d..ecb0ca4abf 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -89,6 +89,13 @@ RUST_BACKTRACE=1 FORY_PANIC_ON_ERROR=1 cargo test --test mod $dir$::$test_file:: cd javascript npm run test ``` +## Common Mistakes + +- Creating PR from main branch instead of a feature branch +- Missing Apache license header +- Incorrect Java package folder structure +- Not running tests before submitting PR +- Not following PR title conventions ## Code Style