Adds a default vscode config with generally applicable settings. Adds more entrypoints to justfile both for environment setup and to help agents better verify changes.
11 lines
358 B
JSON
11 lines
358 B
JSON
{
|
|
"rust-analyzer.checkOnSave": true,
|
|
"rust-analyzer.check.command": "clippy",
|
|
"rust-analyzer.check.extraArgs": ["--all-features", "--tests"],
|
|
"rust-analyzer.rustfmt.extraArgs": ["--config", "imports_granularity=Item"],
|
|
"[rust]": {
|
|
"editor.defaultFormatter": "rust-lang.rust-analyzer",
|
|
"editor.formatOnSave": true,
|
|
}
|
|
}
|