mirror of
https://github.com/RichieCahill/dotfiles.git
synced 2026-04-19 05:48:20 -04:00
306 B
306 B
Dev environment tips
- use treefmt to format all files
- keep new code consistent with the existing style
Python
- make code
ruffcompliant - use pytest to test python code tests should be put in
testsdirectory - dont use global state
- use google style docstrings
- use typer over argparse