fabro/test/twin/github/src/lib.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

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;