mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-24 05:33:27 +00:00
Move needless_raw_string_hashes to pedantic
This commit is contained in:
parent
8c20739e4d
commit
1c77b0b267
1 changed files with 1 additions and 1 deletions
|
@ -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]);
|
||||||
|
|
Loading…
Reference in a new issue