-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdevcontainer.json
More file actions
35 lines (35 loc) · 1.05 KB
/
devcontainer.json
File metadata and controls
35 lines (35 loc) · 1.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
// https://aka.ms/devcontainer.json
{
"name": "Knuckles Workspace",
"image": "mcr.microsoft.com/devcontainers/base:ubuntu-22.04",
"features": {
"ghcr.io/devcontainers/features/common-utils:2": {},
"ghcr.io/devcontainers/features/git:1": {},
"ghcr.io/devcontainers/features/node:1": {}
},
"onCreateCommand": [".devcontainer/hooks/create"],
"updateContentCommand": [".devcontainer/hooks/update-content"],
"customizations": {
"vscode": {
"extensions": [
"dbaeumer.vscode-eslint",
"esbenp.prettier-vscode",
"redhat.vscode-yaml",
"yzhang.markdown-all-in-one",
"ms-playwright.playwright",
"ms-vscode.extension-test-runner",
"github.vscode-github-actions",
"Vue.volar",
"GitHub.vscode-pull-request-github",
"ms-azuretools.vscode-docker",
"bierner.lit-html",
"wayou.vscode-todo-highlight",
"Gruntfuggly.todo-tree",
"firsttris.vscode-jest-runner"
],
"settings": {
"explorer.fileNesting.enabled": true
}
}
}
}