Move needless_raw_string_hashes to pedantic

This commit is contained in:
Alex Macleod 2023-08-27 11:43:45 +00:00
parent 8c20739e4d
commit 1c77b0b267

View file

@ -49,7 +49,7 @@ declare_clippy_lint! {
/// ``` /// ```
#[clippy::version = "1.72.0"] #[clippy::version = "1.72.0"]
pub NEEDLESS_RAW_STRING_HASHES, pub NEEDLESS_RAW_STRING_HASHES,
style, pedantic,
"suggests reducing the number of hashes around a raw string literal" "suggests reducing the number of hashes around a raw string literal"
} }
impl_lint_pass!(RawStrings => [NEEDLESS_RAW_STRINGS, NEEDLESS_RAW_STRING_HASHES]); impl_lint_pass!(RawStrings => [NEEDLESS_RAW_STRINGS, NEEDLESS_RAW_STRING_HASHES]);