review(p9-fb-24-task1): allow(dead_code) on PAGE_STEP until Task 2 consumes it

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-05-04 16:39:23 +00:00
parent 6d24174dc6
commit 8039a8b4fb

View File

@@ -8,4 +8,10 @@
//! lives behind this single edit point.
/// Rows scrolled per `PgUp` / `PgDn` keystroke.
///
/// `#[allow(dead_code)]` is intentional for the Task 1 commit only —
/// Task 2 (Inspect refactor) immediately consumes the constant and
/// removes this attribute. Without it, `cargo clippy -- -D warnings`
/// rejects this commit alone, breaking the per-task review gate.
#[allow(dead_code)]
pub(crate) const PAGE_STEP: u16 = 10;