Commit 6b47bbd
committed
Temporarily defer uninlined_format_args clippy lint in demo
warning: variables can be used directly in the `format!` string
--> demo/src/main.rs:51:5
|
51 | println!("blobid = {}", blobid);
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#uninlined_format_args
= note: `-W clippy::uninlined-format-args` implied by `-W clippy::all`
= help: to override `-W clippy::all` add `#[allow(clippy::uninlined_format_args)]`
help: change this to
|
51 - println!("blobid = {}", blobid);
51 + println!("blobid = {blobid}");
|1 parent 2c9150b commit 6b47bbd
1 file changed
+2
-0
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
| 1 | + | |
| 2 | + | |
1 | 3 | | |
2 | 4 | | |
3 | 5 | | |
| |||
0 commit comments