From c439595d92cc755c370541b5bd61eb94970f2e66 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hannes=20K=C3=B6rber?= Date: Thu, 26 May 2022 18:53:21 +0200 Subject: [PATCH] Justfile: Add target to lint --- Justfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Justfile b/Justfile index c67d7c3..4c6e46a 100644 --- a/Justfile +++ b/Justfile @@ -9,6 +9,9 @@ fmt: cargo fmt git ls-files | grep '\.py$' | xargs black +lint: + cargo clippy --no-deps + lint-fix: cargo clippy --no-deps --fix