aboutsummaryrefslogtreecommitdiff
path: root/Justfile
diff options
context:
space:
mode:
Diffstat (limited to 'Justfile')
-rw-r--r--Justfile9
1 files changed, 6 insertions, 3 deletions
diff --git a/Justfile b/Justfile
index 5c62e93..76bebd4 100644
--- a/Justfile
+++ b/Justfile
@@ -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