clippy: Allow doc_overindented_list_items
After upgrading from Rust 1.85 to 1.88 in 586eefc3e4,
clippy now warns about "overindented" lines in comments. I did not
manage to fix this by hand without breaking the second level of the
lists in question.
See
- https://rust-lang.github.io/rust-clippy/master/index.html#doc_overindented_list_items
- https://github.com/rust-lang/rust-clippy/issues/14275
This commit is contained in:
parent
9068033789
commit
5bab3f9cc0
|
|
@ -1,3 +1,6 @@
|
|||
// Weird lint, see <https://github.com/rust-lang/rust-clippy/issues/14275>
|
||||
#![allow(clippy::doc_overindented_list_items)]
|
||||
|
||||
//! The Radicle fetch protocol can be split into two actions: `clone`
|
||||
//! and `pull`. Each of these actions will interact with the server in
|
||||
//! multiple stages, where each stage will perform a single roundtrip
|
||||
|
|
|
|||
|
|
@ -1,3 +1,6 @@
|
|||
// Weird lint, see <https://github.com/rust-lang/rust-clippy/issues/14275>
|
||||
#![allow(clippy::doc_overindented_list_items)]
|
||||
|
||||
//! Implementation of RIP-0004 Canonical References
|
||||
//!
|
||||
//! [`RawRules`] is intended to be deserialized and then validated into a set of
|
||||
|
|
|
|||
Loading…
Reference in New Issue