17 lines
584 B
JSON
17 lines
584 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,
|
|
},
|
|
"[toml]": {
|
|
"editor.defaultFormatter": "tamasfe.even-better-toml",
|
|
"editor.formatOnSave": true,
|
|
},
|
|
"evenBetterToml.formatter.reorderArrays": true,
|
|
"evenBetterToml.formatter.reorderKeys": true,
|
|
}
|