Skip to content

Commit

Permalink
Warn when missing public safety docs
Browse files Browse the repository at this point in the history
As of this commit, nothing triggers this warning.
  • Loading branch information
mciantyre committed Nov 4, 2024
1 parent 742b38a commit b6f7fbf
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion logging/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,8 @@
#![warn(
missing_docs,
unsafe_op_in_unsafe_fn,
clippy::undocumented_unsafe_blocks
clippy::undocumented_unsafe_blocks,
clippy::missing_safety_doc
)]

#[cfg(feature = "defmt")]
Expand Down
3 changes: 2 additions & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,8 @@
#![warn(
missing_docs,
unsafe_op_in_unsafe_fn,
clippy::undocumented_unsafe_blocks
clippy::undocumented_unsafe_blocks,
clippy::missing_safety_doc
)]

use imxrt_ral as ral;
Expand Down

0 comments on commit b6f7fbf

Please sign in to comment.