bevy_lint/lints/style/mod.rs
1//! Lints that encourage idiomatic code.
2//!
3//! These lints are opinionated and may be freely disabled if you disagree with their suggestions.
4//!
5//! These lints are **warn** by default.
6
7use rustc_lint::Level;
8
9use crate::lint::LintGroup;
10
11pub mod plugin_not_ending_in_plugin;
12
13pub(crate) static STYLE: &LintGroup = &LintGroup {
14 name: "bevy::style",
15 level: Level::Warn,
16};