kemono2/docs/code-style.md
2025-04-11 00:58:59 +02: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.