bevy_lint/lints/performance/
mod.rs

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