bevy_state: Apply #![deny(clippy::allow_attributes, clippy::allow_attributes_without_reason)]
(#17288)
# Objective - https://github.com/bevyengine/bevy/issues/17111 ## Solution Set the `clippy::allow_attributes` and `clippy::allow_attributes_without_reason` lints to `deny`, and bring `bevy_state` in line with the new restrictions. ## Testing Rust-analyzer did not return any errors once the deny was added.
This commit is contained in:
parent
6650931adf
commit
081fe4f7ee
@ -37,6 +37,11 @@
|
||||
)
|
||||
)]
|
||||
#![cfg_attr(any(docsrs, docsrs_dep), feature(rustdoc_internals))]
|
||||
#![deny(
|
||||
clippy::allow_attributes,
|
||||
clippy::allow_attributes_without_reason,
|
||||
reason = "See #17111; To be removed once all crates are in-line with these attributes"
|
||||
)]
|
||||
|
||||
#[cfg(feature = "std")]
|
||||
extern crate std;
|
||||
|
Loading…
Reference in New Issue
Block a user