Skip to content

Commit

Permalink
refactor: clean up whitespace and update clippy linting allowances
Browse files Browse the repository at this point in the history
Signed-off-by: simonsan <[email protected]>
  • Loading branch information
simonsan committed Nov 29, 2024
1 parent 8b9bd0f commit 2d230a4
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/helpers.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ use comfy_table::{
};

/// Helpers for table output
/// Create a new bold cell
pub fn bold_cell<T: ToString>(s: T) -> Cell {
Cell::new(s).add_attribute(Attribute::Bold)
Expand Down
6 changes: 6 additions & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 2d230a4

Please sign in to comment.