File tree Expand file tree Collapse file tree 3 files changed +3
-0
lines changed Expand file tree Collapse file tree 3 files changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -70,6 +70,7 @@ asan = []
70
70
[lints ]
71
71
rust.non_camel_case_types = " allow"
72
72
rust.non_upper_case_globals = " allow"
73
+ rust.unknown_lints = " allow"
73
74
rust.unstable_name_collisions = " allow"
74
75
clippy.assigning_clones = " allow"
75
76
clippy.bool_assert_comparison = " allow"
Original file line number Diff line number Diff line change 1
1
//! The fish_indent program.
2
2
3
+ #![ allow( unknown_lints) ]
3
4
// Delete this once we require Rust 1.74.
4
5
#![ allow( unstable_name_collisions) ]
5
6
#![ allow( clippy:: incompatible_msrv) ]
Original file line number Diff line number Diff line change 1
1
#![ cfg_attr( feature = "benchmark" , feature( test) ) ]
2
2
#![ allow( non_camel_case_types) ]
3
3
#![ allow( non_upper_case_globals) ]
4
+ #![ allow( unknown_lints) ]
4
5
#![ allow( unstable_name_collisions) ]
5
6
#![ allow( clippy:: assigning_clones) ]
6
7
#![ allow( clippy:: bool_assert_comparison) ]
You can’t perform that action at this time.
0 commit comments