Skip to content

Commit 62a3077

Browse files
authored
bevy_picking: Apply #![deny(clippy::allow_attributes, clippy::allow_attributes_without_reason)] (#17302)
# Objective - #17111 ## Solution Set the `clippy::allow_attributes` and `clippy::allow_attributes_without_reason` lints to `deny`, and bring `bevy_picking` in line with the new restrictions. ## Testing `cargo clippy --tests --all-features --package bevy_picking` was run, and no errors were encountered.
1 parent 39a5146 commit 62a3077

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

crates/bevy_picking/src/lib.rs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -155,6 +155,11 @@
155155
//! the plugin with arbitrary backends and input methods, yet still use all the high level features.
156156
157157
#![deny(missing_docs)]
158+
#![deny(
159+
clippy::allow_attributes,
160+
clippy::allow_attributes_without_reason,
161+
reason = "See #17111; To be removed once all crates are in-line with these attributes"
162+
)]
158163

159164
extern crate alloc;
160165

0 commit comments

Comments
 (0)