mirror of
https://github.com/fabro-sh/fabro.git
synced 2026-09-16 23:43:10 +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.
18 lines
417 B
Rust
18 lines
417 B
Rust
#![allow(
|
|
clippy::absolute_paths,
|
|
clippy::manual_let_else,
|
|
clippy::redundant_closure_for_method_calls,
|
|
clippy::redundant_else,
|
|
reason = "This twin GitHub harness prefers explicit fixture modules over pedantic style lints."
|
|
)]
|
|
|
|
pub mod auth;
|
|
pub mod fixtures;
|
|
pub mod handlers;
|
|
pub mod server;
|
|
pub mod state;
|
|
#[cfg(test)]
|
|
pub mod test_support;
|
|
|
|
pub use server::TestServer;
|
|
pub use state::AppState;
|