diff --git a/Makefile.toml b/Makefile.toml index 1afc7d4..1da2b34 100644 --- a/Makefile.toml +++ b/Makefile.toml @@ -16,3 +16,10 @@ args = ["upgrade", "--exclude", "indicatif", "leaky-bucket"] [tasks.update] command = "cargo" args = ["update"] + +# clippy / lint +[tasks.clippy] +clear = true +script = """ +cargo clippy --all-targets --all-features -- -D warnings +"""