Skip to content

Commit a23fd5a

Browse files
committed
Auto merge of #116260 - matthiaskrgr:rollup-q3sge0i, r=matthiaskrgr
Rollup of 7 pull requests Successful merges: - #116133 (ref(bootstrap.py): add `eprint` function) - #116201 (Fix `noop_method_call` detection) - #116231 (Remove `rustc_lint_defs::lint_array`) - #116234 (Miri subtree update) - #116239 (Only visit reachable nodes in SsaLocals.) - #116245 (Clippy backport: Move needless_raw_string_hashes to pedantic) - #116253 (Make `adt_const_params` feature suggestion consistent with other features and improve when it is emitted) r? `@ghost` `@rustbot` modify labels: rollup
2 parents 63833f8 + 0f42afd commit a23fd5a

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

clippy_lints/src/raw_strings.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ declare_clippy_lint! {
5050
/// ```
5151
#[clippy::version = "1.72.0"]
5252
pub NEEDLESS_RAW_STRING_HASHES,
53-
style,
53+
pedantic,
5454
"suggests reducing the number of hashes around a raw string literal"
5555
}
5656
impl_lint_pass!(RawStrings => [NEEDLESS_RAW_STRINGS, NEEDLESS_RAW_STRING_HASHES]);

clippy_lints/src/utils/internal_lints/lint_without_lint_pass.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ declare_clippy_lint! {
2828
/// know the name of the lint.
2929
///
3030
/// ### Known problems
31-
/// Only checks for lints associated using the
32-
/// `declare_lint_pass!`, `impl_lint_pass!`, and `lint_array!` macros.
31+
/// Only checks for lints associated using the `declare_lint_pass!` and
32+
/// `impl_lint_pass!` macros.
3333
///
3434
/// ### Example
3535
/// ```rust,ignore

0 commit comments

Comments
 (0)