Skip to content

Commit

Permalink
#![deny] some useful clippy lints
Browse files Browse the repository at this point in the history
  • Loading branch information
CosmicHorrorDev committed Dec 11, 2023
1 parent b54407a commit e8c2b9d
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@
// I don't really care enough about the names here to fix things atm
clippy::enum_variant_names,
)]
#![deny(
// Generally we don't want this sneaking into `main`
clippy::todo,
// This should be used very sparingly compared between logging and clap
clippy::print_stdout, clippy::print_stderr,
)]

pub mod color;
mod debug_impls;
Expand Down

0 comments on commit e8c2b9d

Please sign in to comment.