bevy_lint/lints/complexity/
mod.rs

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