You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[Test / clippy_linting (pull_request)] fails many times because of issues like the one below.
Should println!("args: {:?}", args); style be allowed? My vote is yes.
error: variables can be used directly in the `format!` string
--> src/commands/mod.rs:98:5
|
98 | println!("args: {:?}", args);
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#uninlined_format_args
help: change this to
|
98 - println!("args: {:?}", args);
98 + println!("args: {args:?}");