Apply clippy::unused_trait_names lint

This commit is contained in:
Taiki Endo
2025-01-13 23:41:50 +09:00
parent 333ea3e9a4
commit b58c61fa21
3 changed files with 4 additions and 3 deletions

View File

@@ -26,6 +26,7 @@ inline_asm_x86_att_syntax = "warn"
trailing_empty_array = "warn"
transmute_undefined_repr = "warn"
undocumented_unsafe_blocks = "warn"
unused_trait_names = "warn"
# Suppress buggy or noisy clippy lints
bool_assert_comparison = { level = "allow", priority = 1 }
borrow_as_ptr = { level = "allow", priority = 1 } # https://github.com/rust-lang/rust-clippy/issues/8286