How to benefit from code review
Background
Code review
has been proven to be a good tool for
- Education
- Reducing complexity
- Reducing technical debt
So it’s a good idea to implement it in any project, with small differences.
Flow description
Prerequesites:
- The newly created team is informed that code review flow is being implemented in a specific project.
- Every team member can stick to
git workflow
- Everybody should understand that reviewer’s feedback isn’t a ground truth
Here are few simple steps:
- After submitting a PR a team member
may
ask any
team member to review his PR in order to get a feedback
- After receiving a code review request a team member should perform it best he can. A result should be
either approval or decline with comments.
- If something has left unclear then two parties need to resolve the issues in a friendly conversation.
You must be friendly and precise in what is need to be improved if you leave a comment. Please refer to a
specific rule you’re mentioning while asking people to fix something. Make sure you make it clear WHY
.
Which flaws should be noticed:
- Naming conventions violated / vocabulary ignored
- Build errors
- Left
debugger
and console.log
statements
- Obvious flaws in code formatting
Which things is good to mention:
- More common ways of handling things
- Useful components allowing to avoid code duplications
- Styleguide violations
How to respond to code review
Ask question if something is unclear. Do it in person.
Respond with commits with fixes.