bevy_lint/lints/suspicious/
mod.rs

1//! Lints that checks for suspicious, potentially incorrect code.
2//!
3//! Unlike [`correctness`](super::correctness) lints, these may have false positives that you need
4//! to `#[allow(...)]`.
5//!
6//! These lints are **warn** by default.
7
8use rustc_lint::Level;
9
10use crate::lint::LintGroup;
11
12pub mod insert_event_resource;
13pub mod insert_unit_bundle;
14pub mod iter_current_update_events;
15
16pub(crate) static SUSPICIOUS: &LintGroup = &LintGroup {
17    name: "bevy::suspicious",
18    level: Level::Warn,
19};