Skip to content

Latest commit

 

History

History
24 lines (17 loc) · 1.03 KB

File metadata and controls

24 lines (17 loc) · 1.03 KB

Style Guide

Naming

  • Use descriptive names for tests, variables, functions, classes, etc.
  • Meaningful names are better than short names.
  • Do not use single-letter names.

Documentation

  • Use Google-format for docstrings.
  • Add docstrings to document functions, classes, and modules.
  • Avoid inline comments; Write self-explanatory code that can be easily understood.
    Only add comments when necessary. For example, when using complex regex.

Typing