Skip to content

Commit 5dbdbbd

Browse files
Accommodate VSCode users with the rust-analyzer extension (#846)
* add symlink * ignore artifacts * settings.json works way better rust-lang/rust-analyzer#6007 (comment) * fix EOF (hopefully) * fix another EOF * mention some recommended extensions
1 parent b902d23 commit 5dbdbbd

File tree

2 files changed

+11
-0
lines changed

2 files changed

+11
-0
lines changed

.vscode/extensions.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"recommendations": [
3+
"EditorConfig.EditorConfig",
4+
"rust-lang.rust-analyzer"
5+
]
6+
}

.vscode/settings.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"rust-analyzer.linkedProjects": [
3+
"native/explorer/Cargo.toml"
4+
]
5+
}

0 commit comments

Comments
 (0)