DEV Community

Cover image for Best Practices for reviewing Pull Requests in projects
hiroyone
hiroyone

Posted on • Updated on

Best Practices for reviewing Pull Requests in projects

Are you really confident in reviewing your colleague's code when they submit a pull request to you?

Can you proudly answer the crucial qualities you should look into in the code?

To be honest, I had been not confident at all for a long time. I was so afraid and overwhelmed to see pull requests with massive, unstructured lines of code changes submitted by a diverse level of other software engineers, even though I had already gained confidence in my programming skills.

However, I started to review my colleague's pull request in a million-dollar enterprise project which was so large and challenging. I have done more than 100 code reviews intensively in a couple of months and discovered solid insights into essential perspectives every reviewer should have in a practical and sustainable way.

I am happy to share them below.


No.1: Traceable and Revertible Pull Requests

Pull requests should be traceable and revertible after your review so that we can analyze, debug, or even revert code commits long days after we find a bug in a program.

Don't try to discover all kinds of bugs

Catching all kinds of bugs with human eyes is too much time-consuming and almost impossible. Business logic functionalities should be guaranteed by (automatic) testings rather than manual code reviews.

Do prepare a crystal-clear pull request template

## Description

Please write a summary of the changes in this pull request.

Fixes # (issue)

## Changes

Please write a list of this PR's changes here.

## Todos

Please write a list of future changes here.

## How can we see the results or reproduce them?

Please attach screenshots or videos so that reviewers can easily confirm what features are implemented.

## How Has This Been Tested?

Please describe the tests that you ran to verify your changes.

- [ ] Unit test
- [ ] Integration test
- [ ] End-to-end test
- [ ] System test

## How do you want others to review your code?

- [ ] Commit by commit
- [ ] Entire diff
- [ ] Others

Enter fullscreen mode Exit fullscreen mode

This is from my repository.

What about the pull request size? Shouldn't it be small?

Yes, but there is no way to enforce this systemically. It is already too late when an inexperienced programmer posts a large pull request.

No.2: Address bad code only!

Don't pursue the best implementations on every bit of code.

Do comment only on poorly implemented code that impairs the robustness of the repository's structure.

Why?
The best code is subjective, contextual, hard to prove most of the time. The poor code is self-evident and easy to spot.

Examples of Bad Code

  • Duplicated code
  • More than two nested something (functions, objects)
  • Misleading variable names
  • More than ten function arguments
  • Hard-coding: mixes of logic and data

Examples of So-So code

  • Verbose function name
  • Less popular or outdated programming syntax
  • Non-conventional variable name but it still makes sense (e.g. addMore instead of readMore )

It is good to avoid an unnecessary dispute with your colleagues on tiny code performance or styles. A few disagreements over minor things with colleagues would ruin the relationship and the atmosphere in a long-run project.

Nonetheless, experienced programmers tend to pursue the best implementations and occasionally enforce them because that is how they improved their programming skills in the past.

Top comments (2)

Collapse
 
pixelstuermer profile image
Philipp Montesano

Nice summup!

Collapse
 
hiroyone profile image
hiroyone

Thank you for your feedback!