Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
cart committed May 31, 2022
1 parent 79b1a5c commit 4227dbf
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions tools/ci/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,10 @@ fn main() {
if what_to_run.contains(Check::CLIPPY) {
// See if clippy has any complaints.
// - Type complexity must be ignored because we use huge templates for queries
cmd!(sh, "cargo clippy --workspace --all-targets --all-features -- {CLIPPY_FLAGS...}")
cmd!(
sh,
"cargo clippy --workspace --all-targets --all-features -- {CLIPPY_FLAGS...}"
)
.run()
.expect("Please fix clippy errors in output above.");
}
Expand Down Expand Up @@ -123,4 +126,3 @@ fn main() {
.expect("Please fix failing doc-tests in output above.");
}
}

0 comments on commit 4227dbf

Please sign in to comment.