about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2020-07-01 14:50:53 +0000
committerbors <bors@rust-lang.org>2020-07-01 14:50:53 +0000
commit52cc5fce1e7dfd440a2ae9c892bcea2aa988c5bb (patch)
tree32f283c37ba0b068a21a83016cf27fc8315a40f3 /src
parent0860375664112ba3263eaf83aa17ff1d7113b172 (diff)
parentd347d0cf59d0a502361db873d900f4587c6e34de (diff)
downloadrust-52cc5fce1e7dfd440a2ae9c892bcea2aa988c5bb.tar.gz
rust-52cc5fce1e7dfd440a2ae9c892bcea2aa988c5bb.zip
Auto merge of #5760 - phansch:deprecate-regex-macro, r=Manishearth
Deprecate regex_macro lint

Closes #2586

changelog: Deprecate regex_macro lint
Diffstat (limited to 'src')
-rw-r--r--src/lintlist/mod.rs7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/lintlist/mod.rs b/src/lintlist/mod.rs
index 5119fb40337..a2998d74130 100644
--- a/src/lintlist/mod.rs
+++ b/src/lintlist/mod.rs
@@ -1866,13 +1866,6 @@ pub static ref ALL_LINTS: Vec<Lint> = vec![
         module: "reference",
     },
     Lint {
-        name: "regex_macro",
-        group: "style",
-        desc: "use of `regex!(_)` instead of `Regex::new(_)`",
-        deprecation: None,
-        module: "regex",
-    },
-    Lint {
         name: "rest_pat_in_fully_bound_structs",
         group: "restriction",
         desc: "a match on a struct that binds all fields but still uses the wildcard pattern",