What is a code review? and Why should they be a part of your process?

Kendra Curtis
3 min readSep 28, 2020

A code review is a standard practice in the software development life cycle, where one or more people review the source code of another developer. The goal of the review can vary, but it is generally to increase the code quality and provide consistency to a code base.

Photo by Viktor Hanacek

It is something I find many people have the hardest time adapting to when moving into industry and as developers moving through their careers. As an Engineering Manager, this is an area I find there is a very high probability of coaching employees. It is not uncommon for someone who is new to the process to submit their first review and have a large amount of feedback for various reasons.

#1 rule: This is about sharing knowledge and improving, not to catch someone out or shame them.

When I started writing code professionally, there were no tools to facilitate the process. We would literally call a meeting for any large or important pieces of code we were adding to the code base. All of the participants would manually review the code and give their feedback. Depending on the nature of the code, feedback could be given 1-on-1 or in a larger group where we would discuss the effect of the code on the code base.

Nowadays, we have built-in support for code reviews. They are often referred to as Pull Requests (PRs) and/or Change Lists (CLs), where the submission of the code is more than likely gated by a review.

Benefits of code reviews

Back in 2006, Jeff Atwood, co-founder of stack-overflow, wrote in his “coding horror” blog that “peer code reviews are the single biggest thing you can do to improve your code”. Since then, code reviews are now commonly used in most tech companies to help achieve the following goals:

  • Better code quality: makes the code more readable and maintainable
  • Finding defects early: when a bug is found early, it is cheaper to fix.
  • Learning/Knowledge transfer: team members gain better understanding of the code base and learn from each other.
  • Increase sense of collective code ownership and solidarity:
  • Finding better solutions: discussions can generate innovative ideas while maintaining a level of consistency in software design and implementation.
  • Complying to QA guidelines and coding standards

This article provides the background for a series of articles on Code Review best practices. The goal of the following articles will be to:

  • provide concrete guidelines and tips on how you can contribute as a code reviewer
  • ensure all these benefits are generated for yourself, your team and your product.

This article is a series on how to be an effective code reviewer, the other articles in the series are:

4 Rules of Thumb for Providing Effective Code Review Feedback

How to Provide Effective Feedback based on Code Review Type

Inclusive and Productive Collaboration in Code Reviews

Imposter Syndrome: How to overcome it during Code Reviews

Thank you to Alice Bonhomme-Biais, co-author of this article. We originally presented the content at Grace Hopper 2020 as a part of a presentation on “Finding your Voice as a Code Reviewer

--

--