Turn on wrong_self_convention clippy lint after false positive fix

This commit is contained in:
David Tolnay 2024-01-11 20:40:31 -08:00
parent 4908c69653
commit a9ea68c5cd
No known key found for this signature in database
GPG Key ID: F9BA143B95FF6D82
5 changed files with 3 additions and 8 deletions

View File

@ -79,7 +79,6 @@
clippy::unconditional_recursion, // clippy bug: https://github.com/rust-lang/rust-clippy/issues/12133
clippy::uninlined_format_args,
clippy::upper_case_acronyms,
clippy::wrong_self_convention, // clippy bug: https://github.com/rust-lang/rust-clippy/issues/6983
)]
mod cargo;

View File

@ -26,8 +26,7 @@
clippy::struct_field_names,
clippy::too_many_arguments,
clippy::too_many_lines,
clippy::toplevel_ref_arg,
clippy::wrong_self_convention, // clippy bug: https://github.com/rust-lang/rust-clippy/issues/6983
clippy::toplevel_ref_arg
)]
mod app;

View File

@ -38,8 +38,7 @@
clippy::too_many_arguments,
clippy::too_many_lines,
clippy::toplevel_ref_arg,
clippy::uninlined_format_args,
clippy::wrong_self_convention, // clippy bug: https://github.com/rust-lang/rust-clippy/issues/6983
clippy::uninlined_format_args
)]
mod error;

View File

@ -26,8 +26,7 @@
clippy::too_many_lines,
clippy::toplevel_ref_arg,
clippy::uninlined_format_args,
clippy::useless_let_if_seq,
clippy::wrong_self_convention, // clippy bug: https://github.com/rust-lang/rust-clippy/issues/6983
clippy::useless_let_if_seq
)]
mod derive;

View File

@ -403,7 +403,6 @@
clippy::transmute_undefined_repr, // clippy bug: https://github.com/rust-lang/rust-clippy/issues/8417
clippy::uninlined_format_args,
clippy::useless_let_if_seq,
clippy::wrong_self_convention
)]
#[cfg(built_with_cargo)]