Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support Docker Workspace Root Dir #129

Draft
wants to merge 2 commits into
base: main
Choose a base branch
from

rm print

0c37ef8
Select commit
Loading
Failed to load commit list.
Sign in for the full log view
Draft

Support Docker Workspace Root Dir #129

rm print
0c37ef8
Select commit
Loading
Failed to load commit list.
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

See this annotation in the file changed.

@github-actions 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