diff --git a/crates/kebab-tui/src/pager.rs b/crates/kebab-tui/src/pager.rs index bdeabb1..7781f58 100644 --- a/crates/kebab-tui/src/pager.rs +++ b/crates/kebab-tui/src/pager.rs @@ -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;