mirror of
https://github.com/fabro-sh/fabro.git
synced 2026-09-07 08:27:12 +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.
10 lines
199 B
Rust
10 lines
199 B
Rust
#![allow(
|
|
clippy::absolute_paths,
|
|
reason = "This test module prefers explicit type paths over extra imports."
|
|
)]
|
|
|
|
mod api;
|
|
mod helpers;
|
|
mod openapi_conformance;
|
|
mod pagination;
|
|
mod scenario;
|