mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-14 00:47:16 +00:00
b162b11abc
The to_string_in_display lint is renamed to recursive_format_impl A check is added for the use of self formatted with Display or Debug inside any format string in the same impl The to_string_in_display check is kept as is - like in the format_in_format_args lint For now only Display and Debug are checked This could also be extended to other Format traits (Binary, etc.)
71 lines
2.3 KiB
Rust
71 lines
2.3 KiB
Rust
//! Test for Clippy lint renames.
|
|
// run-rustfix
|
|
|
|
#![allow(dead_code)]
|
|
// allow the new lint name here, to test if the new name works
|
|
#![allow(clippy::module_name_repetitions)]
|
|
#![allow(clippy::new_without_default)]
|
|
#![allow(clippy::redundant_static_lifetimes)]
|
|
#![allow(clippy::cognitive_complexity)]
|
|
#![allow(clippy::bind_instead_of_map)]
|
|
#![allow(clippy::box_collection)]
|
|
#![allow(clippy::blocks_in_if_conditions)]
|
|
#![allow(clippy::map_unwrap_or)]
|
|
#![allow(clippy::unwrap_used)]
|
|
#![allow(clippy::expect_used)]
|
|
#![allow(clippy::for_loops_over_fallibles)]
|
|
#![allow(clippy::useless_conversion)]
|
|
#![allow(clippy::invisible_characters)]
|
|
#![allow(clippy::single_char_add_str)]
|
|
#![allow(clippy::match_result_ok)]
|
|
#![allow(clippy::disallowed_types)]
|
|
#![allow(clippy::disallowed_methods)]
|
|
#![allow(clippy::recursive_format_impl)]
|
|
// uplifted lints
|
|
#![allow(invalid_value)]
|
|
#![allow(array_into_iter)]
|
|
#![allow(unused_labels)]
|
|
#![allow(drop_bounds)]
|
|
#![allow(temporary_cstring_as_ptr)]
|
|
#![allow(non_fmt_panics)]
|
|
#![allow(unknown_lints)]
|
|
#![allow(invalid_atomic_ordering)]
|
|
#![allow(enum_intrinsics_non_enums)]
|
|
// warn for the old lint name here, to test if the renaming worked
|
|
#![warn(clippy::module_name_repetitions)]
|
|
#![warn(clippy::new_without_default)]
|
|
#![warn(clippy::redundant_static_lifetimes)]
|
|
#![warn(clippy::cognitive_complexity)]
|
|
#![warn(clippy::bind_instead_of_map)]
|
|
#![warn(clippy::box_collection)]
|
|
#![warn(clippy::blocks_in_if_conditions)]
|
|
#![warn(clippy::blocks_in_if_conditions)]
|
|
#![warn(clippy::map_unwrap_or)]
|
|
#![warn(clippy::map_unwrap_or)]
|
|
#![warn(clippy::map_unwrap_or)]
|
|
#![warn(clippy::unwrap_used)]
|
|
#![warn(clippy::unwrap_used)]
|
|
#![warn(clippy::expect_used)]
|
|
#![warn(clippy::expect_used)]
|
|
#![warn(clippy::for_loops_over_fallibles)]
|
|
#![warn(clippy::for_loops_over_fallibles)]
|
|
#![warn(clippy::useless_conversion)]
|
|
#![warn(clippy::invisible_characters)]
|
|
#![warn(clippy::single_char_add_str)]
|
|
#![warn(clippy::match_result_ok)]
|
|
#![warn(clippy::disallowed_types)]
|
|
#![warn(clippy::disallowed_methods)]
|
|
#![warn(clippy::needless_borrow)]
|
|
#![warn(clippy::recursive_format_impl)]
|
|
// uplifted lints
|
|
#![warn(invalid_value)]
|
|
#![warn(array_into_iter)]
|
|
#![warn(unused_labels)]
|
|
#![warn(drop_bounds)]
|
|
#![warn(temporary_cstring_as_ptr)]
|
|
#![warn(non_fmt_panics)]
|
|
#![warn(unknown_lints)]
|
|
#![warn(invalid_atomic_ordering)]
|
|
#![warn(enum_intrinsics_non_enums)]
|
|
|
|
fn main() {}
|