|
9 | 9 | // Bind the host Docker socket to allow Docker CLI inside the container to communicate with the host's Docker daemon |
10 | 10 | "source=/var/run/docker.sock,target=/var/run/docker.sock,type=bind" |
11 | 11 | ], |
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 | + } |
20 | 30 | }, |
21 | | - "extensions": [ |
22 | | - "ms-vscode.node-debug2", |
23 | | - "ms-python.python", |
24 | | - "johnpapa.angular-essentials", |
25 | | - "dbaeumer.vscode-eslint" |
26 | | - ], |
27 | 31 | "postStartCommand": "cd src/frontend && npm install && npm run build", // Initial setup for frontend for linting to work |
28 | 32 | "workspaceMount": "source=${localWorkspaceFolder},target=/workspaces/study-project-url-shortener,type=bind", |
29 | 33 | "workspaceFolder": "/workspaces/study-project-url-shortener" |
|
0 commit comments