mirror of
https://github.com/bevyengine/bevy
synced 2024-11-21 12:13:25 +00:00
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
1 changed files with 2 additions and 0 deletions
|
@ -40,6 +40,7 @@ semicolon_if_nothing_returned = "warn"
|
||||||
type_complexity = "allow"
|
type_complexity = "allow"
|
||||||
undocumented_unsafe_blocks = "warn"
|
undocumented_unsafe_blocks = "warn"
|
||||||
unwrap_or_default = "warn"
|
unwrap_or_default = "warn"
|
||||||
|
needless_lifetimes = "allow"
|
||||||
|
|
||||||
ptr_as_ptr = "warn"
|
ptr_as_ptr = "warn"
|
||||||
ptr_cast_constness = "warn"
|
ptr_cast_constness = "warn"
|
||||||
|
@ -80,6 +81,7 @@ semicolon_if_nothing_returned = "warn"
|
||||||
type_complexity = "allow"
|
type_complexity = "allow"
|
||||||
undocumented_unsafe_blocks = "warn"
|
undocumented_unsafe_blocks = "warn"
|
||||||
unwrap_or_default = "warn"
|
unwrap_or_default = "warn"
|
||||||
|
needless_lifetimes = "allow"
|
||||||
|
|
||||||
ptr_as_ptr = "warn"
|
ptr_as_ptr = "warn"
|
||||||
ptr_cast_constness = "warn"
|
ptr_cast_constness = "warn"
|
||||||
|
|
Loading…
Reference in a new issue