chore(#1474): document the too_many_arguments keeps in hive-forge + hive-ag3nt

This commit is contained in:
damocles 2026-06-08 20:55:14 +02:00 committed by mara
commit 05002acda4
3 changed files with 18 additions and 3 deletions

View file

@ -625,7 +625,12 @@ fn format_state_change_notification(
Some(out)
}
#[allow(clippy::too_many_arguments)]
#[allow(
clippy::too_many_arguments,
reason = "the notification poll's config + mutable subscription state, \
wired once from the poll loop; a struct would just move the \
same fields one level out"
)]
#[allow(
clippy::too_many_lines,
reason = "single-pass notification poll loop — split would obscure the \