Skip to content

Commit 8d83a1b

Browse files
Temporarily disable some lints to fix CI errors on nightly
1 parent 123b71f commit 8d83a1b

File tree

3 files changed

+11
-0
lines changed

3 files changed

+11
-0
lines changed

uefi-test-runner/src/main.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
#![no_std]
44
#![no_main]
5+
// TODO: https://github.com/rust-osdev/uefi-rs/issues/1687
6+
#![expect(clippy::uninlined_format_args, mismatched_lifetime_syntaxes)]
57

68
#[macro_use]
79
extern crate log;

uefi/src/lib.rs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -244,6 +244,12 @@
244244
unsafe_op_in_unsafe_fn,
245245
unused
246246
)]
247+
// TODO: https://github.com/rust-osdev/uefi-rs/issues/1687
248+
#![expect(
249+
clippy::uninlined_format_args,
250+
clippy::unnecessary_unwrap,
251+
mismatched_lifetime_syntaxes
252+
)]
247253

248254
#[cfg(feature = "alloc")]
249255
extern crate alloc;

xtask/src/main.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
// SPDX-License-Identifier: MIT OR Apache-2.0
22

3+
// TODO: https://github.com/rust-osdev/uefi-rs/issues/1687
4+
#![expect(clippy::collapsible_if)]
5+
36
mod arch;
47
mod cargo;
58
mod check_raw;

0 commit comments

Comments
 (0)