about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authormejrs <59372212+mejrs@users.noreply.github.com>2025-07-11 01:24:24 +0200
committermejrs <59372212+mejrs@users.noreply.github.com>2025-07-11 01:24:24 +0200
commita7bf5c4fa2d83669511e88657c194edaec82a872 (patch)
tree67e6da99a781bc01d5aced45cc13af2722cfc7c3 /src
parent25cf7d13c960a3ac47d1424ca354077efb6946ff (diff)
downloadrust-a7bf5c4fa2d83669511e88657c194edaec82a872.tar.gz
rust-a7bf5c4fa2d83669511e88657c194edaec82a872.zip
Split up the `unknown_or_malformed_diagnostic_attributes` lint
Diffstat (limited to 'src')
-rw-r--r--src/tools/lint-docs/src/groups.rs4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/tools/lint-docs/src/groups.rs b/src/tools/lint-docs/src/groups.rs
index 78d4f87ed0d..a24fbbc0cea 100644
--- a/src/tools/lint-docs/src/groups.rs
+++ b/src/tools/lint-docs/src/groups.rs
@@ -26,6 +26,10 @@ static GROUP_DESCRIPTIONS: &[(&str, &str)] = &[
         "Lints that detect identifiers which will be come keywords in later editions",
     ),
     ("deprecated-safe", "Lints for functions which were erroneously marked as safe in the past"),
+    (
+        "unknown-or-malformed-diagnostic-attributes",
+        "detects unknown or malformed diagnostic attributes",
+    ),
 ];
 
 type LintGroups = BTreeMap<String, BTreeSet<String>>;