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.
2 parents 3fbf7f5 + 1f69a0e commit fcff33dCopy full SHA for fcff33d
.clippy.toml
@@ -3,7 +3,6 @@ warn-on-all-wildcard-imports = true
3
allow-expect-in-tests = true
4
allow-unwrap-in-tests = true
5
allow-dbg-in-tests = true
6
-allow-print-in-tests = true
7
disallowed-methods = [
8
{ path = "std::option::Option::map_or", reason = "prefer `map(..).unwrap_or(..)` for legibility" },
9
{ path = "std::option::Option::map_or_else", reason = "prefer `map(..).unwrap_or_else(..)` for legibility" },
.github/workflows/ci.yml
@@ -126,3 +126,5 @@ jobs:
126
with:
127
sarif_file: clippy-results.sarif
128
wait-for-processing: true
129
+ - name: Report status
130
+ run: cargo clippy --workspace --all-features --all-targets -- -D warnings --allow deprecated
0 commit comments