16 lines
327 B
Markdown
16 lines
327 B
Markdown
# 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`.<br>
|
|
Otherwise it's easy to mix them up wtih actual classes and then do `isinstance()` accidentally.
|