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