aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Tolnay <dtolnay@gmail.com>2024-01-11 20:40:31 -0800
committerDavid Tolnay <dtolnay@gmail.com>2024-01-11 20:40:31 -0800
commita9ea68c5cd72267908e65a4768b52464830ede80 (patch)
tree995dd6da9279b373acce49d7fd0dec0fa1d51e02
parent4908c69653b7a4f3108b594de9a08620aaaaaf7a (diff)
downloadcxx-a9ea68c5cd72267908e65a4768b52464830ede80.tar.gz
Turn on wrong_self_convention clippy lint after false positive fix
-rw-r--r--gen/build/src/lib.rs1
-rw-r--r--gen/cmd/src/main.rs3
-rw-r--r--gen/lib/src/lib.rs3
-rw-r--r--macro/src/lib.rs3
-rw-r--r--src/lib.rs1
5 files changed, 3 insertions, 8 deletions
diff --git a/gen/build/src/lib.rs b/gen/build/src/lib.rs
index 5e57f809..2273a7e8 100644
--- a/gen/build/src/lib.rs
+++ b/gen/build/src/lib.rs
@@ -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;
diff --git a/gen/cmd/src/main.rs b/gen/cmd/src/main.rs
index 0284b60b..227a3637 100644
--- a/gen/cmd/src/main.rs
+++ b/gen/cmd/src/main.rs
@@ -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;
diff --git a/gen/lib/src/lib.rs b/gen/lib/src/lib.rs
index 7671b922..5be258f6 100644
--- a/gen/lib/src/lib.rs
+++ b/gen/lib/src/lib.rs
@@ -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;
diff --git a/macro/src/lib.rs b/macro/src/lib.rs
index 8c3ef0e6..472dbc4c 100644
--- a/macro/src/lib.rs
+++ b/macro/src/lib.rs
@@ -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;
diff --git a/src/lib.rs b/src/lib.rs
index 07bb0d06..5549a75b 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -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)]