- What problem does this PR solve?
- Is the solution appropriate for the problem?
- Are there architectural concerns?
- Does it follow team conventions?
- Code readability and maintainability
- Proper error handling
- Performance considerations
- Security implications
- Test coverage
- Documentation updates
// 1. Variable/Function Naming
❌ Bad
function x(a, b) { return a + b }
✅ Good
function calculateTotal(price: number, tax: number) {
return price + tax
}
// 2. Error Handling
❌ Bad
try {
await fetchData()
} catch (e) {
console.log(e)
}
✅ Good
try {
await fetchData()
} catch (error) {
logger.error('Failed to fetch data:', { error, context: 'dataFetch' })
throw new CustomError('DataFetchError', error)
}
// 3. Side Effects
❌ Bad
function processUser(user) {
user.lastLogin = Date.now() // Mutates input
return user
}
✅ Good
function processUser(user) {
return {
...user,
lastLogin: Date.now()
}
}
- SQL injection vulnerabilities
- XSS vulnerabilities
- Authentication/Authorization checks
- Sensitive data exposure
- Input validation
// Check for:
- Unit tests
- Integration tests
- Edge cases
- Error scenarios
- Performance tests (if needed)
- Database query optimization
- Unnecessary re-renders
- Memory leaks
- Large bundle sizes
- API call efficiency
❌ Bad: "This code is messy"
✅ Good: "Consider extracting this logic into a separate function to improve readability:
function validateUserInput(input: UserInput): ValidationResult {
// validation logic here
}
### Overview
- [ ] Code follows team style guide
- [ ] Documentation is updated
- [ ] Tests are included
- [ ] Performance impact considered
### Security
- [ ] Input validation
- [ ] Authentication/Authorization
- [ ] Data protection
### Testing
- [ ] Unit tests pass
- [ ] Integration tests pass
- [ ] Edge cases covered
### Comments
- Strengths:
-
- Suggestions:
-
- Review in multiple passes
- Use automated tools first
- Test the changes locally
- Be timely with reviews
- Be constructive and specific
- Ask questions instead of making assumptions
- Linters (ESLint, etc.)
- Type checkers (TypeScript)
- Code coverage tools
- Security scanners
- Performance profilers
- Small PR (< 200 lines): 1 day
- Medium PR (200-1000 lines): 2 days
- Large PR (> 1000 lines): Request breaking into smaller PRs
✅ Code works as intended ✅ Tests pass and cover edge cases ✅ Documentation is updated ✅ No security vulnerabilities ✅ Performance is acceptable ✅ Code is maintainable ✅ Follows team standards
- Focus on important issues first
- Be constructive and respectful
- Consider the context and constraints
- Share knowledge and explain your reasoning
- Use automated tools to handle basic checks
- Review the actual changes, not just the diff
- Consider the long-term maintainability