From 838550536a3c75645bfc8f2c0cc51f2ed4b55df0 Mon Sep 17 00:00:00 2001 From: Charles Hall Date: Sat, 27 Apr 2024 16:10:31 -0700 Subject: [PATCH] reflow clippy in engage file --- engage.toml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/engage.toml b/engage.toml index 111c5ea1..bd1e847c 100644 --- a/engage.toml +++ b/engage.toml @@ -80,7 +80,15 @@ RUSTDOCFLAGS="-D warnings" cargo doc \ [[task]] name = "cargo-clippy" group = "lints" -script = "cargo clippy --workspace --all-targets --all-features --color=always -- -D warnings" +script = """ +cargo clippy \ + --workspace \ + --all-targets \ + --all-features \ + --color=always \ + -- \ + -D warnings +""" [[task]] name = "lychee"