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:
parent
cc70d7dad4
commit
378365aa42
|
|
@ -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;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue