Skip to content

Commit 0ce485d

Browse files
authored
chore: allow clippy::needless_continue (#428)
1 parent 0643b2d commit 0ce485d

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

Cargo.toml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,9 +46,12 @@ rust_2018_idioms = { level = "warn", priority = -1 }
4646

4747
[workspace.lints.clippy]
4848
all = { level = "deny", priority = -1 }
49-
pedantic = "warn"
49+
pedantic = { level = "warn", priority = -1 }
5050
future_not_send = "warn"
5151
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"
5255

5356
[workspace.dependencies]
5457
ahash = { version = "0.8.12", default-features = false }

0 commit comments

Comments
 (0)