From 56756cab707c261f5bc7bcbfaa8f4b75f043eb96 Mon Sep 17 00:00:00 2001 From: Paul Campbell Date: Fri, 5 Jul 2024 19:38:10 +0100 Subject: [PATCH] chore: bacon treats clippy warnings as errors --- bacon.toml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/bacon.toml b/bacon.toml index 3534669..f6f4bf8 100644 --- a/bacon.toml +++ b/bacon.toml @@ -24,7 +24,15 @@ command = ["cargo", "check", "--all-targets", "--color", "always"] need_stdout = false [jobs.clippy] -command = ["cargo", "clippy", "--all-targets", "--color", "always"] +command = [ + "cargo", + "clippy", + "--all-targets", + "--color", + "always", + "--", + "-Dwarnings", +] need_stdout = false [jobs.test]