File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -678,7 +678,7 @@ define_Conf! {
678
678
lint_inconsistent_struct_field_initializers: bool = false ,
679
679
/// The lower bound for linting decimal literals
680
680
#[ lints( decimal_literal_representation) ]
681
- literal_representation_threshold: u64 = 16384 ,
681
+ literal_representation_threshold: u64 = 0x4000 ,
682
682
/// Whether the matches should be considered by the lint, and whether there should
683
683
/// be filtering for common types.
684
684
#[ lints( manual_let_else) ]
Original file line number Diff line number Diff line change @@ -92,6 +92,8 @@ fn run_clippy_for_package(project: &str) -> bool {
92
92
"-D" ,
93
93
"clippy::dbg_macro" ,
94
94
"-D" ,
95
+ "clippy::decimal_literal_representation" ,
96
+ "-D" ,
95
97
"clippy::derive_partial_eq_without_eq" ,
96
98
"-D" ,
97
99
"clippy::iter_on_single_items" ,
You can’t perform that action at this time.
0 commit comments