Code Review Tips

#1: Review your own code - Before you ask someone else to review your code, make sure to review it yourself. Most likely, you'll find code remnants that you didn't intend to be included in the final production code.

#2: Remove spurious changes - In a typical code review, it is quite common to find that whitespace (spaces, tabs, carriage returns) has been added or removed in existing code, where those whitespace changes are strictly unrelated to the code changes required to fix a bug or implement a feature…

Read more