infra: add clippy allows; fix PathBuf -> Path

Signed-off-by: NotAShelf <raf@notashelf.dev>
Change-Id: I07795374f678fa2ec17b4171fa7e32276a6a6964
This commit is contained in:
raf 2026-02-12 23:22:26 +03:00
commit b71b2862c9
Signed by: NotAShelf
GPG key ID: 29D95B64378DB4BF
3 changed files with 18 additions and 14 deletions

View file

@ -1,3 +1,9 @@
// Allow pre-existing clippy warnings for functions with many arguments
// and complex types that would require significant refactoring
#![allow(clippy::too_many_arguments)]
#![allow(clippy::type_complexity)]
#![allow(clippy::large_enum_variant)]
mod cli;
mod error;
mod export;