mirror of
https://github.com/fabro-sh/fabro.git
synced 2026-08-28 05:27:41 +00:00
Enable clippy::allow_attributes_without_reason at the workspace level. Add concise, callsite-specific reasons to existing allow attributes, including generated code paths.
9 lines
172 B
Rust
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;
|