Skip to content

Commit d48b8a6

Browse files
author
Enzo Desiage
committed
Merge branch 'update-vscode-config' into 'master'
IDX-2765 - Remove unused features VSCode config See merge request dfinity-lab/public/ic!11954
2 parents c1fea5f + 45a539a commit d48b8a6

File tree

2 files changed

+21
-6
lines changed

2 files changed

+21
-6
lines changed

.devcontainer/devcontainer.json

+20-4
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,26 @@
44
"workspaceMount": "source=${localWorkspaceFolder},target=/ic,type=bind",
55
"workspaceFolder": "/ic",
66
"mounts": [
7-
{ "source": "${localEnv:HOME}/.cache", "target": "/home/ubuntu/.cache", "type": "bind" },
8-
{ "source": "${localEnv:HOME}/.ssh", "target": "/home/ubuntu/.ssh", "type": "bind" },
9-
{ "source": "${localEnv:HOME}/.aws", "target": "/home/ubuntu/.aws", "type": "bind" },
10-
{ "source": "${localEnv:HOME}/.config", "target": "/home/ubuntu/.config", "type": "bind" }
7+
{
8+
"source": "${localEnv:HOME}/.cache",
9+
"target": "/home/ubuntu/.cache",
10+
"type": "bind"
11+
},
12+
{
13+
"source": "${localEnv:HOME}/.ssh",
14+
"target": "/home/ubuntu/.ssh",
15+
"type": "bind"
16+
},
17+
{
18+
"source": "${localEnv:HOME}/.aws",
19+
"target": "/home/ubuntu/.aws",
20+
"type": "bind"
21+
},
22+
{
23+
"source": "${localEnv:HOME}/.config",
24+
"target": "/home/ubuntu/.config",
25+
"type": "bind"
26+
}
1127
],
1228
"customizations": {
1329
"vscode": {

.vscode/settings.json

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
{
22
"rust-analyzer.server.extraEnv": {
3-
"RA_LOG": "rust_analyzer=debug"
3+
"RA_LOG": "info"
44
},
5-
"rust-analyzer.trace.server": "verbose",
65
"rust-analyzer.procMacro.enable": true,
76
"rust-analyzer.procMacro.server": ".vscode/proc-macro-srv-wrapper"
87
}

0 commit comments

Comments
 (0)