From 48595060bd4f065cf23b19e753df61cb7a0b0f0f Mon Sep 17 00:00:00 2001 From: AndersonUece Date: Tue, 20 Jan 2026 20:06:55 +0100 Subject: [PATCH] Create LOCAL_DEVELOPMENT.md Added a concise local development checklist to help contributors validate their environment, code quality, and test readiness before opening a pull request. --- docs/LOCAL_DEVELOPMENT.md | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 docs/LOCAL_DEVELOPMENT.md diff --git a/docs/LOCAL_DEVELOPMENT.md b/docs/LOCAL_DEVELOPMENT.md new file mode 100644 index 0000000..9bd9d4d --- /dev/null +++ b/docs/LOCAL_DEVELOPMENT.md @@ -0,0 +1,37 @@ +# Local Development Checklist + +This checklist helps contributors verify that their local development +environment is correctly set up before submitting changes. + +## Environment + +- Node.js version matches the project requirements. +- Package manager versions are up to date. +- Environment variables are configured as expected. + +## Dependencies + +- All dependencies are installed successfully. +- No peer dependency warnings remain unresolved. +- Lockfiles are not modified unintentionally. + +## Code Quality + +- Linting passes without errors. +- Formatting matches the project standards. +- No unused imports or dead code remain. + +## Testing + +- Unit tests pass locally. +- New changes include appropriate test coverage. +- No flaky or non-deterministic tests are introduced. + +## Review Readiness + +- Commits are small and focused. +- Commit messages are clear and descriptive. +- Changes are easy to review and reason about. + +Following this checklist reduces review cycles +and improves overall code quality.