Skip to content

Commit b16a1d3

Browse files
committed
add vscode files
1 parent e0dfa00 commit b16a1d3

File tree

4 files changed

+28
-3
lines changed

4 files changed

+28
-3
lines changed

.devcontainer/devcontainer.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
{
22
"image": "julia:latest",
33
"features": {
4-
"ghcr.io/julialang/devcontainer-features/julia:1": {
4+
"ghcr.io/julialang/devcontainer-features/julia:latest": {
5+
"channel": "release"
56
}
67
}
78
}

.gitignore

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,5 @@ docs/site/
2424
Manifest.toml
2525
LocalPreferences.toml
2626

27-
.vscode
28-
2927
.benchmarkci
3028
benchmark/*.json

.vscode/settings.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
{
2+
}

workspace.code-workspace

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
{
2+
"folders": [
3+
{
4+
"path": "."
5+
}
6+
],
7+
"settings": {
8+
"editor.defaultFormatter": "julialang.language-julia",
9+
"editor.formatOnPaste": true,
10+
"editor.formatOnSave": true,
11+
"editor.formatOnType": true,
12+
"editor.trimWhitespaceOnDelete": true,
13+
"files.insertFinalNewline": true,
14+
"files.trimFinalNewlines": true,
15+
"files.trimTrailingWhitespace": true,
16+
"julia.enableCrashReporter": true,
17+
"julia.enableTelemetry": true,
18+
"julia.execution.codeInREPL": true,
19+
"julia.execution.saveOnEval": true,
20+
"julia.focusPlotNavigator": true,
21+
"julia.inlayHints.static.enabled": true,
22+
"julia.NumThreads": "auto"
23+
}
24+
}

0 commit comments

Comments
 (0)