From 2802d7d3ef6c06d3dc99bddfb480ff1f3fcb3f1e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kuba=20S=C5=82adek?= Date: Sat, 2 Mar 2024 19:40:51 +0100 Subject: [PATCH] build: add clippy to just --- justfile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/justfile b/justfile index 073ac33..1b37f40 100644 --- a/justfile +++ b/justfile @@ -1,4 +1,5 @@ alias b := build +alias c := clippy alias t := test alias r := run alias rr := run-release @@ -16,4 +17,7 @@ run-release: cargo run --release test: - cargo test \ No newline at end of file + cargo test + +clippy: + cargo clippy \ No newline at end of file