diff options
| author | mejrs <59372212+mejrs@users.noreply.github.com> | 2025-07-11 01:24:24 +0200 |
|---|---|---|
| committer | mejrs <59372212+mejrs@users.noreply.github.com> | 2025-07-11 01:24:24 +0200 |
| commit | a7bf5c4fa2d83669511e88657c194edaec82a872 (patch) | |
| tree | 67e6da99a781bc01d5aced45cc13af2722cfc7c3 /src | |
| parent | 25cf7d13c960a3ac47d1424ca354077efb6946ff (diff) | |
| download | rust-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.rs | 4 |
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>>; |
