We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f1ccc17 commit c2060fbCopy full SHA for c2060fb
contrib/lint-verify.sh
@@ -0,0 +1,14 @@
1
+#!/usr/bin/env bash
2
+#
3
+# The `verify` crate is not part of the workspace because it is a dev tool.
4
+
5
+set -euox pipefail
6
7
+REPO_DIR=$(git rev-parse --show-toplevel)
8
9
+cargo +"$(cat ./nightly-version)" clippy \
10
+ --manifest-path "$REPO_DIR/verify/Cargo.toml" \
11
+ --config ./rustfmt.toml \
12
+ --all-targets --all-features \
13
+ -- --deny warnings
14
0 commit comments