Skip to content

Instantly share code, notes, and snippets.

@LucasJantschChitolina
Created September 30, 2025 20:32
Show Gist options
  • Save LucasJantschChitolina/f82d83c1da8c4b4501f37d7bbad53e4d to your computer and use it in GitHub Desktop.
Save LucasJantschChitolina/f82d83c1da8c4b4501f37d7bbad53e4d to your computer and use it in GitHub Desktop.

Code Review Checklist

Overview

Comprehensive checklist for conducting thorough code reviews to ensure quality, security, and maintainability.

Don't run tests or linting, this is done automatically. Just inspect the code.

Review Categories

Functionality

  • Code does what it's supposed to do
  • Edge cases are handled
  • Error handling is appropriate
  • No obvious bugs or logic errors

Code Quality

  • Code is readable and well-structured
  • Functions are small and focused
  • Variable names are descriptive
  • No code duplication
  • Follows project conventions
  • Check if new added dependencies are being used

Security

  • No obvious security vulnerabilities
  • Input validation is present
  • Sensitive data is handled properly
  • No hardcoded secrets
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment