about summary refs log tree commit diff
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2023-07-17 12:18:27 +0000
committerbors <bors@rust-lang.org>2023-07-17 12:18:27 +0000
commit54fa92287b91ff16bb6001d816dd7ae19dc52f91 (patch)
tree95bf8e5e08e79fdf1dc6f67608b74c5a8adf9a59
parent568ccf3fc843527011a268c6f2b23bf898fa0793 (diff)
parent36f84a6176ec2e3df036b0e0938b5395af0bfed1 (diff)
downloadrust-54fa92287b91ff16bb6001d816dd7ae19dc52f91.tar.gz
rust-54fa92287b91ff16bb6001d816dd7ae19dc52f91.zip
Auto merge of #11172 - Alexendoo:tuple-array-conversions-nursery, r=xFrednet
Move tuple_array_conversions to nursery

changelog: Move [`tuple_array_conversions`] to `nursery` (Now allow-by-default)
<!-- FIY: Ignore this change, if the commit gets backported and also https://github.com/rust-lang/rust-clippy/pull/11146 -->
[#11172](https://github.com/rust-lang/rust-clippy/pull/11172)

The nursery change got lost in #11146 and it ended up in pedantic, this puts it in nursery and gives something to backport

r? `@xFrednet`
-rw-r--r--clippy_lints/src/tuple_array_conversions.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/clippy_lints/src/tuple_array_conversions.rs b/clippy_lints/src/tuple_array_conversions.rs
index 2e00ed042a8..81270101538 100644
--- a/clippy_lints/src/tuple_array_conversions.rs
+++ b/clippy_lints/src/tuple_array_conversions.rs
@@ -29,7 +29,7 @@ declare_clippy_lint! {
     /// ```
     #[clippy::version = "1.72.0"]
     pub TUPLE_ARRAY_CONVERSIONS,
-    pedantic,
+    nursery,
     "checks for tuple<=>array conversions that are not done with `.into()`"
 }
 impl_lint_pass!(TupleArrayConversions => [TUPLE_ARRAY_CONVERSIONS]);