Skip to content

Commit

Permalink
Ignore static_mut_refs warning (#535)
Browse files Browse the repository at this point in the history
  • Loading branch information
andrzejressel authored Dec 1, 2024
1 parent 574500e commit f55bdf8
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 0 deletions.
1 change: 1 addition & 0 deletions providers/pulumi_wasm_provider_cloudflare/src/lib.rs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions providers/pulumi_wasm_provider_docker/src/lib.rs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions providers/pulumi_wasm_provider_random/src/lib.rs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions pulumi_wasm/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ bindings::export!(Component with_types_in bindings);

#[allow(clippy::all)]
#[allow(unused_braces)]
#[allow(static_mut_refs)]
#[rustfmt::skip]
mod bindings;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ mod function;
{{#if package.contains_resources_or_functions}}
#[allow(unused_braces)]
#[allow(unused_imports)]
#[allow(static_mut_refs)]
mod bindings;
bindings::export!(Component with_types_in bindings);
{{/if}}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ mod function;

#[allow(unused_braces)]
#[allow(unused_imports)]
#[allow(static_mut_refs)]
mod bindings;
bindings::export!(Component with_types_in bindings);

Expand Down

0 comments on commit f55bdf8

Please sign in to comment.