Skip to content

Commit 34b5254

Browse files
authored
Move VSCode settings out of .devcontainer/devcontainer.json to .vscode/settings.json.
[IDE]
1 parent 90ab1e8 commit 34b5254

File tree

2 files changed

+14
-10
lines changed

2 files changed

+14
-10
lines changed

.devcontainer/devcontainer.json

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,5 @@
88
"vscjava.vscode-java-pack"
99
],
1010

11-
// - Do not automatically update extensions (E.g. better-code ext is patched for TLA+)
12-
// - Use Java GC that works best with TLC.
13-
// - https://github.com/alygin/vscode-tlaplus/wiki/Automatic-Module-Parsing
14-
"settings": {
15-
"tlaplus.tlc.statisticsSharing": "share",
16-
"tlaplus.java.options": "-XX:+UseParallelGC",
17-
"tlaplus.java.home": "/home/codespace/.java/current/",
18-
"[tlaplus]": {"editor.codeActionsOnSave": {"source": true} }
19-
},
20-
2111
"postCreateCommand": "bash -i .devcontainer/install.sh",
2212
}

.vscode/settings.json

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
{
2+
"tlaplus.tlc.modelChecker.options": "-deadlock -noTE",
3+
"tlaplus.java.options": "-XX:+UseParallelGC",
4+
"tlaplus.java.home": "/home/codespace/.java/current/",
5+
"[tlaplus]": {"editor.codeActionsOnSave": {"source": true} },
6+
"breadcrumbs.enabled": false,
7+
"editor.minimap.enabled": false,
8+
"editor.useTabStops": false,
9+
"files.exclude": {
10+
"tools": true,
11+
"*/states/": true,
12+
"_apalache-out/": true
13+
}
14+
}

0 commit comments

Comments
 (0)