about summary refs log tree commit diff
path: root/clippy_lints/src/declared_lints.rs
diff options
context:
space:
mode:
authorGuillaume Gomez <guillaume1.gomez@gmail.com>2024-02-14 17:51:29 +0100
committerGuillaume Gomez <guillaume1.gomez@gmail.com>2024-02-15 00:40:43 +0100
commitf35eec867a1c64018e1b725094155ccccee73b27 (patch)
treef3da94054ca04298302452e00f3a0aac1fae6956 /clippy_lints/src/declared_lints.rs
parent9fb41079ca03a68e1ffc63d82643eb0afe68d3a1 (diff)
downloadrust-f35eec867a1c64018e1b725094155ccccee73b27.tar.gz
rust-f35eec867a1c64018e1b725094155ccccee73b27.zip
Add new lint `DEPRECATED_CLIPPY_CFG_ATTR`
Diffstat (limited to 'clippy_lints/src/declared_lints.rs')
-rw-r--r--clippy_lints/src/declared_lints.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/clippy_lints/src/declared_lints.rs b/clippy_lints/src/declared_lints.rs
index b96a7af9070..c4d26e65b1a 100644
--- a/clippy_lints/src/declared_lints.rs
+++ b/clippy_lints/src/declared_lints.rs
@@ -51,6 +51,7 @@ pub(crate) static LINTS: &[&crate::LintInfo] = &[
     crate::attrs::ALLOW_ATTRIBUTES_WITHOUT_REASON_INFO,
     crate::attrs::BLANKET_CLIPPY_RESTRICTION_LINTS_INFO,
     crate::attrs::DEPRECATED_CFG_ATTR_INFO,
+    crate::attrs::DEPRECATED_CLIPPY_CFG_ATTR_INFO,
     crate::attrs::DEPRECATED_SEMVER_INFO,
     crate::attrs::EMPTY_LINE_AFTER_DOC_COMMENTS_INFO,
     crate::attrs::EMPTY_LINE_AFTER_OUTER_ATTR_INFO,