From 26bd43bface102a7e534df0cdf3d9580e933b177 Mon Sep 17 00:00:00 2001 From: MananGilhotra Date: Wed, 29 Oct 2025 18:23:57 +0530 Subject: [PATCH] Add CONTRIBUTING guidelines for small, focused PRs --- CONTRIBUTING.md | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 CONTRIBUTING.md diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 0000000..535e520 --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1,11 @@ +## Contributing + +- Keep PRs small and focused (one script or feature per PR). +- Prefer argparse for new CLI features; validate user input. +- Preserve existing behavior unless you clearly improve UX. +- Include a short description and test steps in your PR body. +- Use informative commit messages and snake_case in Python. + +### Local test checklist +- python3 -m py_compile path/to/script.py +- Run the script (interactive or with flags) and verify outputs.