summaryrefslogtreecommitdiffstats
path: root/Makefile.toml
diff options
context:
space:
mode:
authora-kenji <aks.kenji@protonmail.com>2022-06-15 15:26:52 +0200
committerGitHub <noreply@github.com>2022-06-15 15:26:52 +0200
commit3ccc1f39466f35b698bd5ea9b247832dac51cc90 (patch)
tree43881adb98468abac14c7609879d7747b2f37719 /Makefile.toml
parent61865781787bcf91e4f7b4b6de63979401f643a2 (diff)
Add/ci enable clippy (#1509)
* fix(clippy): clippy fixes * add(ci): enable clippy warnings * chore(fmt): cargo fmt * disable: failing clippy action Add `cargo make clippy` in ci
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 88f3e1eec..16057604d 100644
--- a/Makefile.toml
+++ b/Makefile.toml
@@ -92,7 +92,7 @@ args = [
# Simple clippy tweak
[tasks.clippy]
-args = ["clippy", "--all-targets","--all-features","--", "@@split(CARGO_MAKE_TASK_ARGS,;)"]
+args = ["clippy", "--all-targets","--all-features","--","--deny","warnings", "@@split(CARGO_MAKE_TASK_ARGS,;)"]
# Release building and installing Zellij
[tasks.install]