Skip to content

Commit 366be6d

Browse files
authored
BM-251: Expand .vscode/settings.json and add .watchmanconfig (github#73)
Updates the VSCode `settings.json` to match the `.vim/coc-settings.json`. In particular, this adds `RISC0_SKIP_BUILD_KERNEL` to the check config. It also adds a `.watchmanconfig` file. See risc0/risc0#2428 for more context.
1 parent 14a3c1f commit 366be6d

File tree

2 files changed

+18
-4
lines changed

2 files changed

+18
-4
lines changed

.vscode/settings.json

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
{
2-
"rust-analyzer.check.extraEnv": {
3-
"RISC0_SKIP_BUILD": "1",
4-
}
5-
}
2+
"rust-analyzer.check.allTargets": true,
3+
"rust-analyzer.check.features": [],
4+
"rust-analyzer.check.extraEnv": {
5+
"RISC0_SKIP_BUILD": "1",
6+
"RISC0_SKIP_BUILD_KERNELS": "1"
7+
}
8+
}

.watchmanconfig

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"ignore_dirs": [
3+
"target",
4+
"crates/guest/resolve/resolve-guest/target",
5+
"crates/guest/util/echo/target",
6+
"crates/guest/util/identity/target",
7+
"crates/guest/assessor/assessor-guest/target",
8+
"crates/guest/set-builder/set-builder-guest/target",
9+
"examples/counter/target"
10+
]
11+
}

0 commit comments

Comments
 (0)