fabro/lib/crates/fabro-cli/tests/it/main.rs
Bryan Helmkamp ad0d532691
chore(clippy): require reasons on allow attributes
Enable clippy::allow_attributes_without_reason at the workspace level.
Add concise, callsite-specific reasons to existing allow attributes, including generated code paths.
2026-04-19 20:24:24 -04:00

9 lines
172 B
Rust

#![allow(
clippy::absolute_paths,
reason = "This test module prefers explicit type paths over extra imports."
)]
mod cmd;
mod scenario;
mod support;
mod workflow;