Fix a clippy warning on newer rust due to lint ordering

pull/919/head
Wilfred Hughes 2025-11-15 02:24:47 +07:00
parent 3943c1401a
commit 57bcd173a7
1 changed files with 3 additions and 3 deletions

@ -4,6 +4,9 @@
//! manual](http://difftastic.wilfred.me.uk/).
//!
// I frequently develop difftastic on a newer rustc than the MSRV, so
// these two aren't relevant.
#![allow(renamed_and_removed_lints)]
// This tends to trigger on larger tuples of simple types, and naming
// them would probably be worse for readability.
#![allow(clippy::type_complexity)]
@ -37,9 +40,6 @@
// Debugging features shouldn't be in checked-in code.
#![warn(clippy::todo)]
#![warn(clippy::dbg_macro)]
// I frequently develop difftastic on a newer rustc than the MSRV, so
// this isn't relevant.
#![allow(renamed_and_removed_lints)]
mod conflicts;
mod constants;