Skip to content

Commit

Permalink
Turn on wrong_self_convention clippy lint after false positive fix
Browse files Browse the repository at this point in the history
  • Loading branch information
dtolnay committed Jan 12, 2024
1 parent 4908c69 commit a9ea68c
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 8 deletions.
1 change: 0 additions & 1 deletion gen/build/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
3 changes: 1 addition & 2 deletions gen/cmd/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
3 changes: 1 addition & 2 deletions gen/lib/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
3 changes: 1 addition & 2 deletions macro/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
1 change: 0 additions & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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)]
Expand Down

0 comments on commit a9ea68c

Please sign in to comment.