ignore broken clippy lint about derive_more::Constructor
Some checks failed
Build / Checks (push) Failing after 18s
Build / Build for windows (push) Has been skipped
Build / Build for linux (push) Has been skipped
Build / Build for macos (push) Has been skipped

This commit is contained in:
widberg 2026-08-22 19:13:53 -04:00
parent 3fe1748b13
commit 27d1a4e452
2 changed files with 6 additions and 0 deletions

View file

@ -1,3 +1,6 @@
// `derive_more::Constructor` produces these initializers, but their spans point here.
#![allow(clippy::redundant_field_names)]
use std::ffi::OsString;
use derive_more::{Constructor, Display, Error, From};

View file

@ -1,3 +1,6 @@
// `derive_more::Constructor` produces these initializers, but their spans point here.
#![allow(clippy::redundant_field_names)]
use std::fmt::Debug;
use std::io::Write;
use std::marker::PhantomData;