Skip to content

Commit

Permalink
style(lint): only warn on missing docs
Browse files Browse the repository at this point in the history
Otherwise the build fails when you just want to prototype. The
workaround of spamming `/// TODO` everywhere leads to oversights.
  • Loading branch information
Swiftb0y committed Oct 14, 2022
1 parent 9e10575 commit 7e72a58
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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)]
Expand Down

0 comments on commit 7e72a58

Please sign in to comment.