1//! Lints that suggest how to improve the performance of your code.
2//!
3//! These lints are **warn** by default.
45use rustc_lint::Level;
67use crate::lint::LintGroup;
89pub(crate) static PERFORMANCE: &LintGroup = &LintGroup {
10 name: "bevy::performance",
11 level: Level::Warn,
12};