bevy_lint/lints/correctness/
mod.rs

1//! Lints that check for outright incorrect code.
2//!
3//! Unlike [`suspicious`](super::suspicious) lints, these are carefully picked to be free of false
4//! positives. You should avoid `#[allow(...)]`-ing these lints without a _very_ good reason.
5//!
6//! These lints are **deny** by default.
7
8use rustc_lint::Level;
9
10use crate::lint::LintGroup;
11
12pub(crate) static CORRECTNESS: &LintGroup = &LintGroup {
13    name: "bevy::correctness",
14    level: Level::Deny,
15};