Radish alpha
h
Radicle Heartwood Protocol & Stack
Radicle
Git (anonymous pull)
Log in to clone via SSH
REVIEW: Also deny `print_stdout` in `radicle-term`
Lorenz Leutgeb committed 23 days ago
commit cdec8fbcbc512f9d297dbb925431e99d00c590de
parent 9a86383c9e071727f5095fd55e2e92ac0c73bc1a
1 file changed +5 -0
modified crates/radicle-term/src/lib.rs
@@ -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 cell;
pub mod colors;