bevy_lint/lints/pedantic/
mod.rs

1//! Lints that make the linter a nit-picky perfectionist.
2//!
3//! Unlike other lint groups, pedantic lints have limited value and may not always apply. Be sure
4//! to read the motivation behind each lint in this category before enabling them, and expect to
5//! liberally apply `#[allow(...)]` attributes throughout your code if you do use them.
6//!
7//! These lints are **allow** by default.
8
9use rustc_lint::Level;
10
11use crate::lint::LintGroup;
12
13pub mod borrowed_reborrowable;
14pub mod main_return_without_appexit;
15
16pub(crate) static PEDANTIC: &LintGroup = &LintGroup {
17    name: "bevy::pedantic",
18    level: Level::Allow,
19};