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 7a2907d commit e218dceCopy full SHA for e218dce
Cargo.toml
@@ -31,3 +31,21 @@ native-tls = [ "convex/native-tls" ]
31
native-tls-vendored = [ "convex/native-tls-vendored" ]
32
rustls-tls-native-roots = [ "convex/rustls-tls-native-roots" ]
33
rustls-tls-webpki-roots = [ "convex/rustls-tls-webpki-roots" ]
34
+
35
+[lints.rust]
36
+unused_extern_crates = "warn"
37
38
+[lints.clippy]
39
+await_holding_lock = "warn"
40
+await_holding_refcell_ref = "warn"
41
+large_enum_variant = "allow"
42
+manual_map = "allow"
43
+new_without_default = "allow"
44
+op_ref = "allow"
45
+ptr_arg = "allow"
46
+single_match = "allow"
47
+too_many_arguments = "allow"
48
+type_complexity = "allow"
49
+upper_case_acronyms = "allow"
50
+useless_format = "allow"
51
+useless_vec = "allow"
0 commit comments