|
17 | 17 | clippy::must_use_candidate, |
18 | 18 | rustc::diagnostic_outside_of_impl, |
19 | 19 | rustc::untranslatable_diagnostic, |
20 | | - clippy::literal_string_with_formatting_args |
| 20 | + clippy::literal_string_with_formatting_args, |
| 21 | + clippy::excessive_nesting |
21 | 22 | )] |
22 | 23 | #![warn( |
23 | 24 | trivial_casts, |
@@ -69,7 +70,7 @@ pub mod ctfe; // Very important lint, do not remove (rust#125116) |
69 | 70 | pub mod declared_lints; |
70 | 71 | pub mod deprecated_lints; |
71 | 72 |
|
72 | | -// begin lints modules, do not remove this comment, it’s used in `update_lints` |
| 73 | +// begin lints modules, do not remove this comment, it's used in `update_lints` |
73 | 74 | mod absolute_paths; |
74 | 75 | mod almost_complete_range; |
75 | 76 | mod approx_const; |
@@ -404,7 +405,7 @@ mod zero_div_zero; |
404 | 405 | mod zero_repeat_side_effects; |
405 | 406 | mod zero_sized_map_values; |
406 | 407 | mod zombie_processes; |
407 | | -// end lints modules, do not remove this comment, it’s used in `update_lints` |
| 408 | +// end lints modules, do not remove this comment, it's used in `update_lints` |
408 | 409 |
|
409 | 410 | use clippy_config::{Conf, get_configuration_metadata, sanitize_explanation}; |
410 | 411 | use clippy_utils::macros::FormatArgsStorage; |
|
0 commit comments