Skip to content

Latest commit

 

History

History
12 lines (11 loc) · 213 Bytes

Code Review checklist.md

File metadata and controls

12 lines (11 loc) · 213 Bytes

Naming

  • Use intention revealing name
  • Avoid disinformation
  • Don't add member prefix
  • Don't use hungarian notation
  • ...

Functions

  • Use less indentation than 3
  • Less than 20 lines
  • 120 characters
  • ...