about summary refs log tree commit diff
diff options
context:
space:
mode:
authorAlex Macleod <alex@macleod.io>2023-08-27 11:43:45 +0000
committerPhilipp Krones <hello@philkrones.com>2023-09-28 21:24:42 +0200
commit07f81cd58aef7529f6cf457e4167d8ce0c2c89ae (patch)
treeabccdd6bfc22d5e7a66121890c3f81c1cfdbd0a9
parent925f8441645193c95bd870be0dd9d0b3d03a3020 (diff)
downloadrust-07f81cd58aef7529f6cf457e4167d8ce0c2c89ae.tar.gz
rust-07f81cd58aef7529f6cf457e4167d8ce0c2c89ae.zip
Move needless_raw_string_hashes to pedantic
-rw-r--r--src/tools/clippy/clippy_lints/src/raw_strings.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/clippy/clippy_lints/src/raw_strings.rs b/src/tools/clippy/clippy_lints/src/raw_strings.rs
index 2895595e039..8a7e4874666 100644
--- a/src/tools/clippy/clippy_lints/src/raw_strings.rs
+++ b/src/tools/clippy/clippy_lints/src/raw_strings.rs
@@ -50,7 +50,7 @@ declare_clippy_lint! {
     /// ```
     #[clippy::version = "1.72.0"]
     pub NEEDLESS_RAW_STRING_HASHES,
-    style,
+    pedantic,
     "suggests reducing the number of hashes around a raw string literal"
 }
 impl_lint_pass!(RawStrings => [NEEDLESS_RAW_STRINGS, NEEDLESS_RAW_STRING_HASHES]);