1//! Lints that offer suggestions on how to simplify your code.
2//!
3//! These lints are **warn** by default.
45use rustc_lint::Level;
67use crate::lint::LintGroup;
89pub(crate) static COMPLEXITY: &LintGroup = &LintGroup {
10 name: "bevy::complexity",
11 level: Level::Warn,
12};