Support Docker Workspace Root Dir #129
Draft
GitHub Actions / clippy
succeeded
Dec 20, 2024 in 0s
clippy
1 warning
Details
Results
Message level | Amount |
---|---|
Internal compiler error | 0 |
Error | 0 |
Warning | 1 |
Note | 0 |
Help | 0 |
Versions
- rustc 1.83.0 (90b35a623 2024-11-26)
- cargo 1.83.0 (5ffbef321 2024-10-29)
- clippy 0.1.83 (90b35a6 2024-11-26)
Annotations
Check warning on line 412 in main/src/main.rs
github-actions / clippy
`format!` in `write!` args
warning: `format!` in `write!` args
--> main/src/main.rs:408:9
|
408 | / write!(
409 | | f,
410 | | "{}",
411 | | format!("--data-fee-bump-percent={}", self.data_fee_bump_percent),
412 | | )
| |_________^
|
= help: combine the `format!(..)` arguments with the outer `write!(..)` call
= help: or consider changing `format!` to `format_args!`
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#format_in_format_args
= note: `#[warn(clippy::format_in_format_args)]` on by default
Loading