From 9fc34e69896abfc9ed01a15551fdde9ab5c14c7e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hannes=20K=C3=B6rber?= Date: Wed, 15 Jun 2022 20:39:01 +0200 Subject: [PATCH] just: Add clean target --- Justfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Justfile b/Justfile index 6422c1d..149817f 100644 --- a/Justfile +++ b/Justfile @@ -7,6 +7,10 @@ check: fmt-check lint test cargo fmt --check cargo clippy --no-deps -- -Dwarnings +clean: + cargo clean + git clean -f -d -X + fmt: cargo fmt git ls-files | grep '\.py$' | xargs black