style: rustfmt the LC-186 remote-control audit files (LC-187) #231
Loading…
Reference in a new issue
No description provided.
Delete branch "fix/lc-187-fmt"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
The Check workflow's
cargo fmt --checkfailed on the three LC-186 files (#230):server/src/db/remote_control_audit.rs,server/src/routes/ws.rs,server/tests/db_remote_control_audit.rs. rustfmt wanted long fn signatures and chained.awaitexpressions wrapped. I had runcargo fmton the desktop crate but not the server crate, so the drift slipped past local verification.This PR applies
cargo fmt --all; the diff is exactly what the workflow reported. Formatting-only, no behavior change.cargo fmt --all --checkis now clean. (LC-187)