From 7e72a58e445dab7f0ec747320e9af9d676593b8c Mon Sep 17 00:00:00 2001 From: Swiftb0y <12380386+Swiftb0y@users.noreply.github.com> Date: Fri, 14 Oct 2022 04:12:37 +0200 Subject: [PATCH] style(lint): only warn on missing docs Otherwise the build fails when you just want to prototype. The workaround of spamming `/// TODO` everywhere leads to oversights. --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index 10a31848..6a4b7a52 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -9,11 +9,11 @@ //! This library provides access to device libraries exported from Pioneer's Rekordbox DJ software. #![warn(unsafe_code)] +#![warn(missing_docs)] #![cfg_attr(not(debug_assertions), deny(warnings))] #![deny(rust_2018_idioms)] #![deny(rust_2021_compatibility)] #![deny(missing_debug_implementations)] -#![deny(missing_docs)] #![deny(rustdoc::broken_intra_doc_links)] #![deny(clippy::all)] #![deny(clippy::explicit_deref_methods)]