kemono2/docs/code-style.md
2024-11-26 00:11:49 +01:00

327 B

Code Style

General

  • Prepend all control flow keywords with an empty line.

SQL

  • Always declare aliases with AS construct.
  • No star selects allowed.

Python

  • Prefix all TypedDict declarations with TD.
    Otherwise it's easy to mix them up wtih actual classes and then do isinstance() accidentally.