From 5b501d0e84acfa0456c72dbda7d10ad1c068c12a Mon Sep 17 00:00:00 2001 From: Matt Rubens Date: Sat, 21 Jun 2025 13:09:01 -0400 Subject: [PATCH] Simplify PR template checklist for code quality and testing (#4985) Co-authored-by: Cursor Agent --- .github/pull_request_template.md | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md index ccf8f8e7c7..d4ca97fde8 100644 --- a/.github/pull_request_template.md +++ b/.github/pull_request_template.md @@ -50,15 +50,7 @@ Detail the steps to test your changes. This helps reviewers verify your work. - [ ] **Issue Linked**: This PR is linked to an approved GitHub Issue (see "Related GitHub Issue" above). - [ ] **Scope**: My changes are focused on the linked issue (one major feature/fix per PR). - [ ] **Self-Review**: I have performed a thorough self-review of my code. -- [ ] **Code Quality**: - - [ ] My code adheres to the project's style guidelines. - - [ ] There are no new linting errors or warnings (`npm run lint`). - - [ ] All debug code (e.g., `console.log`) has been removed. -- [ ] **Testing**: - - [ ] New and/or updated tests have been added to cover my changes. - - [ ] All tests pass locally (`npm test`). - - [ ] The application builds successfully with my changes. -- [ ] **Branch Hygiene**: My branch is up-to-date (rebased) with the `main` branch. +- [ ] **Testing**: New and/or updated tests have been added to cover my changes (if applicable). - [ ] **Documentation Impact**: I have considered if my changes require documentation updates (see "Documentation Updates" section below). - [ ] **Contribution Guidelines**: I have read and agree to the [Contributor Guidelines](/CONTRIBUTING.md).