ci: enable standard lint set
Adds the somewhat "standard" lint set we use to the gossip lib.pull/24376/head
parent
69ab70ce99
commit
5c191ce6cf
|
@ -1 +1,16 @@
|
|||
//! A work-in-progress, simple gossip primitive for metadata distribution
|
||||
//! between IOx nodes.
|
||||
|
||||
#![deny(rustdoc::broken_intra_doc_links, rust_2018_idioms)]
|
||||
#![warn(
|
||||
clippy::clone_on_ref_ptr,
|
||||
clippy::dbg_macro,
|
||||
clippy::explicit_iter_loop,
|
||||
clippy::future_not_send,
|
||||
clippy::todo,
|
||||
clippy::use_self,
|
||||
missing_copy_implementations,
|
||||
missing_debug_implementations,
|
||||
unused_crate_dependencies,
|
||||
missing_docs
|
||||
)]
|
||||
|
|
Loading…
Reference in New Issue