Skip to content

Commit 34b527b

Browse files
committed
Document why we can't deny needless_continue
1 parent 5520d88 commit 34b527b

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

Cargo.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,8 +103,9 @@ cast_possible_truncation = "allow"
103103
float_cmp = "allow"
104104
cast_sign_loss = "allow"
105105
cast_precision_loss = "allow"
106-
needless_continue = "allow"
107106
unchecked_time_subtraction = "allow"
107+
# We should be able to deny this, but it lint's on code generated by darling, raised https://github.com/TedDriggs/darling/pull/429
108+
needless_continue = "allow"
108109

109110
# Additional nursery lints we enforce
110111
use_self = "deny"

0 commit comments

Comments
 (0)