Skip to content

Commit

Permalink
Opt out of Rust-1.67-default clippy::uninlined_format_args lint (#59)
Browse files Browse the repository at this point in the history
  • Loading branch information
MarijnS95 authored Jan 29, 2023
1 parent 104a44a commit b9a7cf5
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 0 deletions.
2 changes: 2 additions & 0 deletions examples/intellisense-tu.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#![allow(clippy::uninlined_format_args)]

use hassle_rs::*;

fn main() {
Expand Down
2 changes: 2 additions & 0 deletions examples/validate-fake-signing.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#![allow(clippy::uninlined_format_args)]

#[repr(C)]
pub struct MinimalHeader {
four_cc: u32,
Expand Down
2 changes: 2 additions & 0 deletions examples/validate.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#![allow(clippy::uninlined_format_args)]

use hassle_rs::*;

#[repr(C)]
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(
clippy::transmute_ptr_to_ptr, // Introduced by com-rs
clippy::too_many_arguments, // We're wrapping and API outside of our control
clippy::uninlined_format_args, // Unfavourable format; implies unneeded MSRV bump
)]

//! # Hassle
Expand Down

0 comments on commit b9a7cf5

Please sign in to comment.