Skip to content

Commit

Permalink
Merge pull request #96 from Swiftb0y/missing-docs-warn
Browse files Browse the repository at this point in the history
style(lint): only warn on missing docs
  • Loading branch information
Holzhaus authored Aug 11, 2023
2 parents fd53500 + 7e72a58 commit 8c1b02e
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 8c1b02e

Please sign in to comment.