aboutsummaryrefslogtreecommitdiff
path: root/Justfile
diff options
context:
space:
mode:
authorArjun Satarkar <me@arjunsatarkar.net>2024-12-21 13:35:04 +0000
committerArjun Satarkar <me@arjunsatarkar.net>2024-12-21 13:35:04 +0000
commitdf5a7db84432f4f60698b2ddb97a9f8955dd97fb (patch)
treec49ac71095e3eca5055ae518a3cee096afe19f8e /Justfile
parent2df2e62042206cc04b82fca2a208d8c66d96a3b3 (diff)
downloadsrtfilter-df5a7db84432f4f60698b2ddb97a9f8955dd97fb.tar
srtfilter-df5a7db84432f4f60698b2ddb97a9f8955dd97fb.tar.gz
srtfilter-df5a7db84432f4f60698b2ddb97a9f8955dd97fb.zip
Refactor for modularity, package
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