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.
clippy::needless_continue
1 parent 0643b2d commit 0ce485dCopy full SHA for 0ce485d
Cargo.toml
@@ -46,9 +46,12 @@ rust_2018_idioms = { level = "warn", priority = -1 }
46
47
[workspace.lints.clippy]
48
all = { level = "deny", priority = -1 }
49
-pedantic = "warn"
+pedantic = { level = "warn", priority = -1 }
50
future_not_send = "warn"
51
allow_attributes = "warn"
52
+# TODO: consider removing this if/when this is fixed:
53
+# https://github.com/rust-lang/rust-clippy/issues/16175
54
+needless_continue = "allow"
55
56
[workspace.dependencies]
57
ahash = { version = "0.8.12", default-features = false }
0 commit comments