bevy_lint/lints/nursery/mod.rs
1//! Unstable lints that may be removed at any time for any reason.
2//!
3//! These lints are **allow** by default.
4
5use rustc_lint::Level;
6
7use crate::lint::LintGroup;
8
9pub mod duplicate_bevy_dependencies;
10pub mod zst_query;
11
12pub(crate) static NURSERY: &LintGroup = &LintGroup {
13 name: "bevy::nursery",
14 level: Level::Allow,
15};