Skip to content

Latest commit

 

History

History
25 lines (20 loc) · 780 Bytes

File metadata and controls

25 lines (20 loc) · 780 Bytes

✅ GitHub Code Review Checklist

↖️ Return to the main file

Code Quality

  • Code follows project style guide
  • Naming conventions are clear and consistent
  • Functions and methods are concise and readable
  • Avoid duplicated code

Functionality

  • Code solves the intended problem
  • No obvious bugs or errors
  • Edge cases are handled
  • Tests are included or updated

Documentation & Comments

  • Clear and concise comments where necessary
  • Functions and classes have docstrings
  • Update README or related documentation if needed

Performance & Security

  • Code is efficient and avoids unnecessary computations
  • No security vulnerabilities introduced
  • Validate user input where applicable