diff --git a/src/main.rs b/src/main.rs index a07e2d4..5cdd1e8 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1,10 +1,13 @@ -// #![warn(clippy::pedantic)] -// #![allow(clippy::uninlined_format_args)] -// #![allow(clippy::enum_glob_use)] -// #![allow(clippy::module_name_repetitions)] -// #![allow(clippy::doc_markdown)] +// Temporarily uncomment to view more pedantic or new nursery lints. +// #![warn(clippy::pedantic, clippy::nursery)] // #![allow(clippy::if_not_else)] // #![allow(clippy::ignored_unit_patterns)] +// #![allow(clippy::missing_const_for_fn)] +// #![allow(clippy::module_name_repetitions)] +// #![allow(clippy::uninlined_format_args)] +// #![allow(clippy::unnested_or_patterns)] +// #![allow(clippy::use_self)] + mod eval; mod location; mod nix_file;