Disable lint that interferes with rust beta CI compatibility (#16199)
# Objective Fix our CI with rust beta ## Solution Disable new lint ## Testing Ran `cargo +nightly clippy`.
This commit is contained in:
parent
03991cd595
commit
e155fe1d86
@ -40,6 +40,7 @@ semicolon_if_nothing_returned = "warn"
|
||||
type_complexity = "allow"
|
||||
undocumented_unsafe_blocks = "warn"
|
||||
unwrap_or_default = "warn"
|
||||
needless_lifetimes = "allow"
|
||||
|
||||
ptr_as_ptr = "warn"
|
||||
ptr_cast_constness = "warn"
|
||||
@ -80,6 +81,7 @@ semicolon_if_nothing_returned = "warn"
|
||||
type_complexity = "allow"
|
||||
undocumented_unsafe_blocks = "warn"
|
||||
unwrap_or_default = "warn"
|
||||
needless_lifetimes = "allow"
|
||||
|
||||
ptr_as_ptr = "warn"
|
||||
ptr_cast_constness = "warn"
|
||||
|
Loading…
Reference in New Issue
Block a user