Skip to content

Commit

Permalink
Suppress unknown_lints lint
Browse files Browse the repository at this point in the history
  • Loading branch information
The0x539 committed Mar 9, 2024
1 parent 2bc92ae commit 9d88d6d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/bin/fish_indent.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
// Delete this once we require Rust 1.74.
#![allow(unstable_name_collisions)]
#![allow(unknown_lints)]
#![allow(clippy::uninlined_format_args)]
#![allow(clippy::incompatible_msrv)] // false positive for is_some_and (we have a polyfill)

Expand Down
1 change: 1 addition & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
#![allow(non_camel_case_types)]
#![allow(non_upper_case_globals)]
#![allow(unstable_name_collisions)]
#![allow(unknown_lints)] // prevent stable from complaining about nightly-only lints
#![allow(clippy::bool_assert_comparison)]
#![allow(clippy::box_default)]
#![allow(clippy::collapsible_if)]
Expand Down

0 comments on commit 9d88d6d

Please sign in to comment.