Skip to content

Commit c3475af

Browse files
committed
[lint] add clippy override to tolerate suspicious formatting
1 parent 2ade41f commit c3475af

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

itest/rust/build.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -369,7 +369,7 @@ fn generate_rust_methods(inputs: &[Input]) -> Vec<TokenStream> {
369369
.collect::<Vec<_>>();
370370

371371
let manual_methods = quote! {
372-
#[allow(clippy::suspicious_else_formatting)] // `quote!` might output whole file as one big line.
372+
#[allow(clippy::suspicious_else_formatting, clippy::possible_missing_else)] // `quote!` might output whole file as one big line.
373373
#[func]
374374
fn check_last_notrace(last_method_name: String, expected_callconv: String) -> bool {
375375
let last = godot::private::trace::pop();

0 commit comments

Comments
 (0)