From 2d230a44c7f42730e4b78e1e9ef85a6364abd122 Mon Sep 17 00:00:00 2001 From: simonsan <14062932+simonsan@users.noreply.github.com> Date: Fri, 29 Nov 2024 13:31:44 +0100 Subject: [PATCH] refactor: clean up whitespace and update clippy linting allowances Signed-off-by: simonsan <14062932+simonsan@users.noreply.github.com> --- src/helpers.rs | 1 - src/lib.rs | 6 ++++++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/src/helpers.rs b/src/helpers.rs index f9b858592..9d752d6df 100644 --- a/src/helpers.rs +++ b/src/helpers.rs @@ -4,7 +4,6 @@ use comfy_table::{ }; /// Helpers for table output - /// Create a new bold cell pub fn bold_cell(s: T) -> Cell { Cell::new(s).add_attribute(Attribute::Bold) diff --git a/src/lib.rs b/src/lib.rs index 399bd4c3c..6c2171d43 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -51,6 +51,12 @@ Application based on the [Abscissa] framework. clippy::trivially_copy_pass_by_ref )] #![allow( + // Popped up in 1.83.0 + non_local_definitions, + // False-positive in WebDavFs + clippy::needless_lifetimes, + // False-positive in WebDavFs + elided_named_lifetimes, clippy::module_name_repetitions, clippy::redundant_pub_crate, clippy::missing_const_for_fn