diff --git a/Justfile b/Justfile index 9503515..c67d7c3 100644 --- a/Justfile +++ b/Justfile @@ -5,6 +5,10 @@ check: test cargo fmt --check cargo clippy --no-deps -- -Dwarnings +fmt: + cargo fmt + git ls-files | grep '\.py$' | xargs black + lint-fix: cargo clippy --no-deps --fix