bevy_lint/lints/restriction/mod.rs
1//! Opt-in lints that restrict you from writing certain code patterns.
2//!
3//! These are designed for scenarios where you want to increase the consistency of your project by
4//! rejecting certain patterns. These lints should not all be enabled as a group, but instead
5//! should be chosen individually after reading the documentation.
6//!
7//! These lints are **allow** by default.
8
9use rustc_lint::Level;
10
11use crate::lint::LintGroup;
12
13pub mod missing_reflect;
14pub mod panicking_methods;
15
16pub(crate) static RESTRICTION: &LintGroup = &LintGroup {
17 name: "bevy::restriction",
18 level: Level::Allow,
19};