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 46dd56f commit 7629163Copy full SHA for 7629163
log/src/lib.rs
@@ -1,4 +1,9 @@
1
// Copyright 2025-Present Datadog, Inc. https://www.datadoghq.com/
2
// SPDX-License-Identifier: Apache-2.0
3
+#![cfg_attr(not(test), deny(clippy::panic))]
4
+#![cfg_attr(not(test), deny(clippy::unwrap_used))]
5
+#![cfg_attr(not(test), deny(clippy::expect_used))]
6
+#![cfg_attr(not(test), deny(clippy::todo))]
7
+#![cfg_attr(not(test), deny(clippy::unimplemented))]
8
9
pub mod logger;
0 commit comments