5
Carike
5y

We only recently started and we can really see the benefits of code review.

It motivates you to follow the standards, writing good quality code and using variable/function names that makes sense. Especially that you know someone is going to read through it.

Comments
  • 1
    I love it. I makes you think about writing clean code while you're writing it because you know it's going to be reviewed and you cant hide your laziness or mistakes. Code should also be easily readable by anyone, not just by the person who wrote it, understands it all and has the full context of it.

    Code should be written with the mindset that it can be handed off to somebody with some documentation and they should be able to maintain it from there. Code review is a great way to start that process.
Add Comment