diff options
Diffstat (limited to 'Justfile')
-rw-r--r-- | Justfile | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Justfile b/Justfile new file mode 100644 index 0000000..5c62e93 --- /dev/null +++ b/Justfile @@ -0,0 +1,7 @@ +check: typecheck lint + +typecheck: + pyright + +lint: + black --check *.py |