Skip to content

Commit 841f8bc

Browse files
committed
Update devcontainer
1 parent 7eacd69 commit 841f8bc

File tree

1 file changed

+18
-14
lines changed

1 file changed

+18
-14
lines changed

.devcontainer/devcontainer.json

Lines changed: 18 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -9,21 +9,25 @@
99
// Bind the host Docker socket to allow Docker CLI inside the container to communicate with the host's Docker daemon
1010
"source=/var/run/docker.sock,target=/var/run/docker.sock,type=bind"
1111
],
12-
"settings": {
13-
"terminal.integrated.shell.linux": "/bin/bash",
14-
// Disable GitHub Copilot in this workspace (all languages)
15-
"github.copilot.enable": { "*": false },
16-
// Disable inline suggestions globally (covers Copilot and others)
17-
"editor.inlineSuggest.enabled": false,
18-
// Disable Copilot Chat (key name tolerated even if extension absent)
19-
"github.copilot.chat.enable": false
12+
"customizations": {
13+
"vscode": {
14+
"settings": {
15+
"terminal.integrated.shell.linux": "/bin/bash",
16+
// Disable GitHub Copilot in this workspace (all languages)
17+
"github.copilot.enable": { "*": false },
18+
// Disable inline suggestions globally (covers Copilot and others)
19+
"editor.inlineSuggest.enabled": false,
20+
// Disable Copilot Chat (key name tolerated even if extension absent)
21+
"github.copilot.chat.enable": false
22+
},
23+
"extensions": [
24+
"ms-vscode.node-debug2",
25+
"ms-python.python",
26+
"johnpapa.angular-essentials",
27+
"dbaeumer.vscode-eslint"
28+
]
29+
}
2030
},
21-
"extensions": [
22-
"ms-vscode.node-debug2",
23-
"ms-python.python",
24-
"johnpapa.angular-essentials",
25-
"dbaeumer.vscode-eslint"
26-
],
2731
"postStartCommand": "cd src/frontend && npm install && npm run build", // Initial setup for frontend for linting to work
2832
"workspaceMount": "source=${localWorkspaceFolder},target=/workspaces/study-project-url-shortener,type=bind",
2933
"workspaceFolder": "/workspaces/study-project-url-shortener"

0 commit comments

Comments
 (0)