fix(hive-claude): exempt crate-doc block from comment-block lint

This commit is contained in:
damocles 2026-07-07 18:16:50 +02:00
commit 244669f644

View file

@ -53,6 +53,9 @@
//! } //! }
//! # } //! # }
//! ``` //! ```
// The crate-level `//!` overview above is the rustdoc entry point — it belongs
// in source, not docs/, so the comment-block length lint should not flag it.
// lint:allow-long-comment
mod classify; mod classify;
mod config; mod config;