Skip to content

Code Checklist

Tawan Boonma edited this page Nov 28, 2021 · 2 revisions

Code Review Checklist

General

  • Code and Docstring are conforms to PEP8 and Google Python Style Guide.
  • High code Coverage result (Above 80).
  • Exception handling and cleanup (dispose) resources
  • Code has tests.

Template

  • Fonts Background style has done as we have designed.
  • Chrome tested.
  • Edge tested.
  • Safari tested.
  • Layout on monitor site.(PC, laptop)
  • Layout on mobile site.

Clean Code

  • Avoid duplication. (DRY)
  • Explain what you have done in code.
  • Variable names should be related to its role.
  • Class and function should do only one thing.
  • Class and function should be small.