# Canonical clippy config for every Rust spore in this kit. Every binary spore
# is an Agent-First Data emitter — structured events on stdout, never stderr.
#
# Default policy mirrored into each Rust project's clippy.toml. Repository
# tooling may select a project-specific full replacement.
# Production code uses the matching `deny` lint levels in each Cargo.toml.
# Tests may use these failure helpers when they make assertions clearer.
= true
= true
= true
= [
{ = "std::eprintln", = "AFDATA protocol/log events must use stdout only; stderr is not a protocol channel." },
]
= [
{ = "std::io::stderr", = "AFDATA protocol/log events must use stdout only; stderr is not a protocol channel." },
]