summaryrefslogtreecommitdiffstats
path: root/Makefile.toml
diff options
context:
space:
mode:
authordanieleades <33452915+danieleades@users.noreply.github.com>2021-12-29 08:16:54 +0000
committerGitHub <noreply@github.com>2021-12-29 09:16:54 +0100
commita62a23a1c73a3e316bc42b9b87ab54748cb27d91 (patch)
tree151462816b83b09f022e7890581670496369f58a /Makefile.toml
parented251d3e23146c49c64699f7cb4e6c69fbec0116 (diff)
fix(clippy): ensure clippy runs on all targets (#972)
* ensure clippy runs on all targets * use 'AtomicBool' instead of 'Mutex<bool>' * remove unused import * remove 'mem::drop' no-ops * remove loop that never loops
Diffstat (limited to 'Makefile.toml')
-rw-r--r--Makefile.toml2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.toml b/Makefile.toml
index 8cb5f4d37..df0d93ce0 100644
--- a/Makefile.toml
+++ b/Makefile.toml
@@ -69,7 +69,7 @@ args = ["run", "--", "--data-dir", "${CARGO_TARGET_DIR}/dev-data/", "@@split(CAR
# Simple clippy tweak
[tasks.clippy]
-args = ["clippy", "--", "@@split(CARGO_MAKE_TASK_ARGS,;)"]
+args = ["clippy", "--all-targets", "--", "@@split(CARGO_MAKE_TASK_ARGS,;)"]
# Release building and installing Zellij
[tasks.install]