Fix
Automatically fix formatting and linting issues across the codebase.
Steps
- Run
cargo fmt --allto auto-format all Rust code. - Run
cargo clippy --fix --allow-dirty --allow-stagedto apply automatic clippy fixes. - Run
poly fmt --fix .andpoly lint --fix .to apply remaining formatting and lint autofixes. - Run
git diffto show what was changed by the fixes. - Report a summary of files modified and fixes applied.