term: Deny `print_stdout`

To prevent regressions, `#![deny(clippy::print_stdout)]` is added to
`radicle-term`, similar to `radicle-cli`.
This commit is contained in:
Lorenz Leutgeb 2026-04-14 22:58:17 +02:00 committed by Lorenz Leutgeb
parent cc70d7dad4
commit 378365aa42
1 changed files with 5 additions and 0 deletions

View File

@ -1,3 +1,8 @@
// Prevent use of `println!` and `print!` which panic on broken pipes.
// Use `crate::io::println` or `term::io::print` instead.
// See: https://github.com/rust-lang/rust/issues/62569
#![deny(clippy::print_stdout)]
pub mod ansi; pub mod ansi;
pub mod cell; pub mod cell;
pub mod colors; pub mod colors;