From 244669f644635b6b06f717fa1bab93ce211c2541 Mon Sep 17 00:00:00 2001 From: damocles Date: Tue, 7 Jul 2026 18:16:50 +0200 Subject: [PATCH] fix(hive-claude): exempt crate-doc block from comment-block lint --- hive-claude/src/lib.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/hive-claude/src/lib.rs b/hive-claude/src/lib.rs index 40cde76a..8c5404c6 100644 --- a/hive-claude/src/lib.rs +++ b/hive-claude/src/lib.rs @@ -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 config;