diff options
Diffstat (limited to 'Justfile')
-rw-r--r-- | Justfile | 9 |
1 files changed, 6 insertions, 3 deletions
@@ -1,7 +1,10 @@ -check: typecheck lint +check: typecheck check_style typecheck: pyright -lint: - black --check *.py +check_style: + black --check src + +format: + black src |