Skip to content

Latest commit

 

History

History
30 lines (20 loc) · 738 Bytes

codereviewchecklist.md

File metadata and controls

30 lines (20 loc) · 738 Bytes

Code Review Checklist

__ Code Formating

Use alignments, white space correctly
Easy to read
Use proper naming convesion

__ Functionality

Pass all regression tests 
Does it break other existing functionality?
Does it work well with other modules in the product?
Does it perform all of the required tasks?
Does it pass all regress tests?

__ Architecture

Code need to be split into adequate files (PUG, JS, CSS)
Follow the existing structure of the project

__ Coding Best Practices

No hard coding
Comments are written probably where necessary (TOD)
Use frameworks feature instead of custom code

__ Non Functional

Follow DRY and SOLID principles from lectures