Clippy
rustの
linter
github
λ cargo clippy
lintする
λ cargo clippy --fix --allow-dirty
推奨する書き方に自動書き換え
code:.vscode/setting.json
{
"rust-analyzer.checkOnSave": true,
"rust-analyzer.check.command": "clippy"
}
/mrsekut-book-4798186015/062