Move needless_raw_string_hashes to pedantic

This commit is contained in:
Alex Macleod 2023-08-27 11:43:45 +00:00 committed by Philipp Krones
parent 925f844164
commit 07f81cd58a
No known key found for this signature in database
GPG Key ID: 1CA0DF2AF59D68A5

View File

@ -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]);