From 1ca1c9f2c8ef05bfaa73db58100224c35f8f8784 Mon Sep 17 00:00:00 2001 From: David Wood Date: Sun, 2 Mar 2025 23:30:44 +0000 Subject: [PATCH] lint-docs: add future edition group This should have been included in rust-lang/rust#137606. --- src/tools/lint-docs/src/groups.rs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/tools/lint-docs/src/groups.rs b/src/tools/lint-docs/src/groups.rs index 78d4f87ed0de6..a1e37eb08d7f4 100644 --- a/src/tools/lint-docs/src/groups.rs +++ b/src/tools/lint-docs/src/groups.rs @@ -17,6 +17,10 @@ static GROUP_DESCRIPTIONS: &[(&str, &str)] = &[ ("rust-2018-compatibility", "Lints used to transition code from the 2015 edition to 2018"), ("rust-2021-compatibility", "Lints used to transition code from the 2018 edition to 2021"), ("rust-2024-compatibility", "Lints used to transition code from the 2021 edition to 2024"), + ( + "edition-future-compatibility", + "Lints used to transition code from the 2024 edition to the future edition", + ), ( "refining-impl-trait", "Detects refinement of `impl Trait` return types by trait implementations",