code_review_checklist
Required validation steps for code review submissions.
synonyms:: code review, pr review, pull request review, code checklist checklist:: tests, documentation, error handling, security, performance
Checklist Items
tests
All code changes must include appropriate tests.
synonyms:: test, testing, unit test, integration test, test coverage
documentation
Code must have proper documentation and comments.
synonyms:: docs, comments, docstrings, readme
error_handling
Proper error handling must be implemented.
synonyms:: error handling, exception handling, error management, try catch
security
Security considerations must be addressed.
synonyms:: security check, vulnerability check, security review
performance
Performance implications must be considered.
synonyms:: performance check, optimization, efficiency