clippy: Disallow unused lints

The following clippy lints were allowed in the past but are not
required anymore:
 - box_default
 - large_enum_variant
 - let_unit_value
 - or_fun_call
This commit is contained in:
Lorenz Leutgeb 2026-04-15 00:52:00 +02:00
parent 63f9607423
commit dbec748c47
No known key found for this signature in database
7 changed files with 0 additions and 9 deletions

View File

@ -1,4 +1,3 @@
#![allow(clippy::or_fun_call)]
mod args;
use std::str::FromStr;

View File

@ -1,4 +1,3 @@
#![allow(clippy::box_default)]
mod args;
use std::path::PathBuf;

View File

@ -1,5 +1,3 @@
#![allow(clippy::or_fun_call)]
mod args;
pub use args::Args;

View File

@ -1,5 +1,3 @@
#![allow(clippy::or_fun_call)]
mod args;
use std::collections::HashMap;

View File

@ -1,4 +1,3 @@
#![allow(clippy::or_fun_call)]
#![allow(clippy::too_many_arguments)]
pub mod commands;
pub mod git;

View File

@ -1,5 +1,4 @@
//! Generic COB storage.
#![allow(clippy::large_enum_variant)]
use std::fmt::Debug;
use std::marker::PhantomData;

View File

@ -1,4 +1,3 @@
#![allow(clippy::let_unit_value)]
use std::io;
use std::path::Path;
use std::str::FromStr;