I'm part of a small team (5) of developers that want to start conducting code reviews. We want to create a general checklist for what to look for in a code review - 10 to 15 points.
The purpose for our reviews is to ensure maintainability of our systems as we frequently need to implement new requirements. Things that would ensure our code is clean, effective, simple etc.
Does anybody have a good generic list or ideas what is important to look for? Something that is often overlooked, perhaps?
Since we are a small team we won't include obvious things like naming conventions of variables and methods etc. For those we have a C# Coding Standards Guideline.
I'm a fairly new developer and don't know all the tricks in this area.
What I do have so far is:
- General rules about commenting code
- Method size, validating params
- Methods should only do one thing
- Names of variables/classes etc. should be descriptive
- OOP design
- Some details regarding exception handling.