Radish alpha
h
Radicle Heartwood Protocol & Stack
Radicle
Git (anonymous pull)
Log in to clone via SSH
term: Deny `print_stdout`
✓ CI success Lorenz Leutgeb committed 10 days ago
commit c38233883080441984bd15b67b04518c3b2068fe
parent 2cb4898570aab99cc0899cce2b8228bed3c0728f
1 passed (1 total) View logs
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;