mirror of
https://github.com/RichieCahill/dotfiles.git
synced 2026-04-19 13:49:09 -04:00
13 lines
306 B
Markdown
13 lines
306 B
Markdown
## Dev environment tips
|
|
|
|
- use treefmt to format all files
|
|
- keep new code consistent with the existing style
|
|
|
|
### Python
|
|
|
|
- make code `ruff` compliant
|
|
- use pytest to test python code tests should be put in `tests` directory
|
|
- dont use global state
|
|
- use google style docstrings
|
|
- use typer over argparse
|