Skip to content

Instantly share code, notes, and snippets.

View michaellarrubis's full-sized avatar
👋

Michael Larrubis michaellarrubis

👋
View GitHub Profile
@katyhuff
katyhuff / pr-checklist.md
Last active March 4, 2025 23:13
Pull Request Review Checklist
  • Read the PR description
  • Read through all the changes, considering the following questions.
    • Is there anything you can praise about this PR? Start with praise.
    • Are variable names brief but descriptive?
    • Are new/changed functions no longer than a paragraph?
    • Do all function parameters have default values where appropriate?
    • Is the code clear and clean? (see Robert C. Martin's Clean Code)
    • Is there enough documentation?
  • Does the programming style meet the requirements of the repository (PEP8 for python, google for c++, etc.)