Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 8d83a1b

Browse filesBrowse files
Temporarily disable some lints to fix CI errors on nightly
1 parent 123b71f commit 8d83a1b
Copy full SHA for 8d83a1b

File tree

Expand file treeCollapse file tree

3 files changed

+11
-0
lines changed
Filter options
Expand file treeCollapse file tree

3 files changed

+11
-0
lines changed

‎uefi-test-runner/src/main.rs

Copy file name to clipboardExpand all lines: uefi-test-runner/src/main.rs
+2Lines 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

Copy file name to clipboardExpand all lines: uefi/src/lib.rs
+6Lines 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

Copy file name to clipboardExpand all lines: xtask/src/main.rs
+3Lines 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 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.