Skip to content

Commit c6dfa17

Browse files
committed
remove #![allow(clippy::type_complexity)]
1 parent a24338a commit c6dfa17

File tree

49 files changed

+4
-62
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

49 files changed

+4
-62
lines changed

crates/bevy_a11y/src/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
//! Accessibility for Bevy
22
33
#![warn(missing_docs)]
4-
#![allow(clippy::type_complexity)]
54
#![forbid(unsafe_code)]
65

76
use std::sync::{

crates/bevy_animation/src/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
//! Animation for the game engine Bevy
22
33
#![warn(missing_docs)]
4-
#![allow(clippy::type_complexity)]
54

65
use std::ops::Deref;
76
use std::time::Duration;

crates/bevy_app/src/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
//! This crate is about everything concerning the highest-level, application layer of a Bevy app.
22
33
#![warn(missing_docs)]
4-
#![allow(clippy::type_complexity)]
54

65
mod app;
76
mod main_schedule;

crates/bevy_asset/src/lib.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
#![allow(clippy::type_complexity)]
2-
31
pub mod io;
42
pub mod meta;
53
pub mod processor;

crates/bevy_audio/src/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@
2121
//! ```
2222
2323
#![forbid(unsafe_code)]
24-
#![allow(clippy::type_complexity)]
2524
#![warn(missing_docs)]
2625

2726
mod audio;

crates/bevy_core/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#![warn(missing_docs)]
2-
#![allow(clippy::type_complexity)]
2+
33
//! This crate provides core functionality for Bevy Engine.
44
55
mod name;

crates/bevy_core_pipeline/src/lib.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
#![allow(clippy::type_complexity)]
2-
31
pub mod blit;
42
pub mod bloom;
53
pub mod clear_color;

crates/bevy_derive/src/lib.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
#![allow(clippy::type_complexity)]
2-
31
extern crate proc_macro;
42

53
mod app_plugin;

crates/bevy_diagnostic/src/lib.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
#![allow(clippy::type_complexity)]
2-
31
mod diagnostic;
42
mod entity_count_diagnostics_plugin;
53
mod frame_time_diagnostics_plugin;

crates/bevy_dylib/src/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
#![warn(missing_docs)]
2-
#![allow(clippy::type_complexity)]
32
#![allow(clippy::single_component_path_imports)]
43

54
//! Forces dynamic linking of Bevy.

0 commit comments

Comments
 (0)