Skip to content

Latest commit

 

History

History
5 lines (4 loc) · 361 Bytes

File metadata and controls

5 lines (4 loc) · 361 Bytes

Coding Standards

  • For Python function, do not add docstrings.
  • Enforce newline at the end of files for all file types. Do NOT ensure a newline at the end of the file when writing or editing files, as the project's git hooks will automatically add these.
  • Use type hints in Python to improve code readability and catch potential type-related errors early.