summaryrefslogtreecommitdiffstats
path: root/bacon.toml
diff options
context:
space:
mode:
authorCanop <cano.petrole@gmail.com>2020-12-11 13:12:05 +0100
committerCanop <cano.petrole@gmail.com>2020-12-11 13:12:05 +0100
commitaab4f13284e2b61e485aeb898b84e2332c968227 (patch)
treeec5b936355017bf05f70ce9cf6fe75f5e2e239e6 /bacon.toml
parentf6efb7456752ac0fcd603d5c2afbb9a0118f630c (diff)
use serde's derive to deserialize conf
Diffstat (limited to 'bacon.toml')
-rw-r--r--bacon.toml10
1 files changed, 9 insertions, 1 deletions
diff --git a/bacon.toml b/bacon.toml
index 5928b6d..8bd8bfe 100644
--- a/bacon.toml
+++ b/bacon.toml
@@ -11,7 +11,15 @@ command = ["cargo", "check", "--color", "always"]
need_stdout = false
[jobs.clippy]
-command = ["cargo", "clippy", "--color", "always"]
+command = [
+ "cargo", "clippy",
+ "--color", "always",
+ "--",
+ "-A", "clippy::match_like_matches_macro",
+ "-A", "clippy::collapsible_if",
+ "-A", "clippy::module_inception",
+ "-A", "clippy::comparison_chain",
+]
need_stdout = false
[jobs.test]