From 347c183a8ceb8b049d8c3a0fb928e80355a2057f Mon Sep 17 00:00:00 2001 From: Val Lorentz Date: Fri, 3 Nov 2023 11:24:45 +0100 Subject: [PATCH] Don't run rustfmt on reflow.rs --- src/widgets/mod.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/widgets/mod.rs b/src/widgets/mod.rs index 91b5043..bb3d88a 100644 --- a/src/widgets/mod.rs +++ b/src/widgets/mod.rs @@ -20,6 +20,7 @@ use ratatui::widgets::Widget; mod bottom_aligned_paragraph; pub use bottom_aligned_paragraph::BottomAlignedParagraph; +#[rustfmt::skip] // reflow is vendored from ratatui, let's avoid changes mod reflow; /// A [`Widget`] that returns how many lines it actually drew to.