Commit 30c5c2f 1 parent 26e57f0 commit 30c5c2f Copy full SHA for 30c5c2f
File tree 4 files changed +5
-5
lines changed
4 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -592,7 +592,7 @@ Released 2021-02-11
592
592
593
593
* Previously deprecated [ ` str_to_string ` ] and [ ` string_to_string ` ] have been un-deprecated
594
594
as ` restriction ` lints [ #6333 ] ( https://github.com/rust-lang/rust-clippy/pull/6333 )
595
- * Deprecate ` panic_params ` lint. This is now available in rustc as ` non_fmt_panic `
595
+ * Deprecate ` panic_params ` lint. This is now available in rustc as ` non_fmt_panics `
596
596
[ #6351 ] ( https://github.com/rust-lang/rust-clippy/pull/6351 )
597
597
* Move [ ` map_err_ignore ` ] to ` restriction `
598
598
[ #6416 ] ( https://github.com/rust-lang/rust-clippy/pull/6416 )
Original file line number Diff line number Diff line change @@ -2171,7 +2171,7 @@ pub fn register_renamed(ls: &mut rustc_lint::LintStore) {
2171
2171
ls. register_renamed ( "clippy::unused_label" , "unused_labels" ) ;
2172
2172
ls. register_renamed ( "clippy::drop_bounds" , "drop_bounds" ) ;
2173
2173
ls. register_renamed ( "clippy::temporary_cstring_as_ptr" , "temporary_cstring_as_ptr" ) ;
2174
- ls. register_renamed ( "clippy::panic_params" , "non_fmt_panic " ) ;
2174
+ ls. register_renamed ( "clippy::panic_params" , "non_fmt_panics " ) ;
2175
2175
ls. register_renamed ( "clippy::unknown_clippy_lints" , "unknown_lints" ) ;
2176
2176
}
2177
2177
Original file line number Diff line number Diff line change 1
- #![ allow( non_fmt_panic ) ]
1
+ #![ allow( non_fmt_panics ) ]
2
2
3
3
macro_rules! assert_const {
4
4
( $len: expr) => {
Original file line number Diff line number Diff line change @@ -60,11 +60,11 @@ error: lint `clippy::temporary_cstring_as_ptr` has been renamed to `temporary_cs
60
60
LL | #[warn(clippy::temporary_cstring_as_ptr)]
61
61
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use the new name: `temporary_cstring_as_ptr`
62
62
63
- error: lint `clippy::panic_params` has been renamed to `non_fmt_panic `
63
+ error: lint `clippy::panic_params` has been renamed to `non_fmt_panics `
64
64
--> $DIR/deprecated.rs:11:8
65
65
|
66
66
LL | #[warn(clippy::panic_params)]
67
- | ^^^^^^^^^^^^^^^^^^^^ help: use the new name: `non_fmt_panic `
67
+ | ^^^^^^^^^^^^^^^^^^^^ help: use the new name: `non_fmt_panics `
68
68
69
69
error: lint `clippy::unknown_clippy_lints` has been renamed to `unknown_lints`
70
70
--> $DIR/deprecated.rs:12:8
You can’t perform that action at this time.
0 commit comments