We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8d4b1b6 commit 99e034bCopy full SHA for 99e034b
Cargo.toml
@@ -73,8 +73,6 @@ needless_continue = "warn"
73
needless_for_each = "warn"
74
negative_feature_names = "warn"
75
path_buf_push_overwrite = "warn"
76
-print_stderr = "warn"
77
-print_stdout = "warn"
78
ptr_as_ptr = "warn"
79
rc_mutex = "warn"
80
redundant_feature_names = "warn"
src/lib.rs
@@ -1,4 +1,6 @@
1
//! > DESCRIPTION
2
3
#![cfg_attr(docsrs, feature(doc_auto_cfg))]
4
+#![warn(clippy::print_stderr)]
5
+#![warn(clippy::print_stdout)]
6
#![allow(non_snake_case)] // TODO: Delete me
0 commit comments