Roadmap to becoming a developer in 2022
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

528 B

Questions to Ask

  • Is the project's formatting style applied?
  • Does it adhere to the agreed-upon naming conventions?
  • Is it DRY?
  • Is the code sufficiently "readable" (method lengths, etc.)?
  • Are comments used appropriately without being excessive?
  • Are functions and methods of appropriate length and focused on a single responsibility?
  • Is complex logic broken into smaller, manageable units?
  • Does the code follow SOLID principles where applicable?
  • Is the overall structure of the code logical and easy to follow?