We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
#![deny]
1 parent b54407a commit e8c2b9dCopy full SHA for e8c2b9d
src/main.rs
@@ -2,6 +2,12 @@
2
// I don't really care enough about the names here to fix things atm
3
clippy::enum_variant_names,
4
)]
5
+#![deny(
6
+ // Generally we don't want this sneaking into `main`
7
+ clippy::todo,
8
+ // This should be used very sparingly compared between logging and clap
9
+ clippy::print_stdout, clippy::print_stderr,
10
+)]
11
12
pub mod color;
13
mod debug_impls;
0 commit comments