mtcs-sp1/.vscode/settings.json

25 lines
584 B
JSON
Raw Permalink Normal View History

2024-04-08 22:20:11 +00:00
{
"editor.inlineSuggest.enabled": true,
"[rust]": {
"editor.defaultFormatter": "rust-lang.rust-analyzer",
},
"editor.rulers": [
100
],
"rust-analyzer.check.overrideCommand": [
"cargo",
"clippy",
"--workspace",
"--message-format=json",
"--all-features",
"--all-targets",
"--",
"-A",
"incomplete-features"
],
"rust-analyzer.linkedProjects": [
"program/Cargo.toml",
"script/Cargo.toml",
],
"rust-analyzer.showUnlinkedFileNotification": false
}