Skip to content

Commit b2588ef

Browse files
committed
Tweak Dev Container and VS Code settings
1 parent b84537b commit b2588ef

File tree

2 files changed

+14
-11
lines changed

2 files changed

+14
-11
lines changed

.devcontainer/wordcount/devcontainer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"name": "wordcount",
33
"image": "mcr.microsoft.com/devcontainers/python:3.13-bookworm",
4-
"workspaceFolder": "/workspaces/wordcount",
5-
"workspaceMount": "source=${localWorkspaceFolder}/wordcount,target=/workspaces/wordcount,type=bind",
4+
"workspaceFolder": "/workspaces/materials/wordcount",
5+
"workspaceMount": "source=${localWorkspaceFolder},target=/workspaces/materials,type=bind",
66
"postCreateCommand": {
77
"project": "python -m pip install -r requirements.txt -e . && rm -rf src/*.egg-info/",
88
"help": "echo 'echo -e \"💡 Run \\e[1mpytest --task\\e[0m to display instructions for the current task.\n💡 Run \\e[1mpytest\\e[0m to evaluate your solution and track your progress.\"' >> ~/.bashrc"

wordcount/.vscode/settings.json

Lines changed: 12 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,29 @@
11
{
2-
"editor.fontSize": 20,
3-
"markdown.preview.fontSize": 20,
4-
"terminal.integrated.fontSize": 20,
5-
"editor.mouseWheelZoom": true,
6-
"terminal.integrated.mouseWheelZoom": true,
72
"breadcrumbs.enabled": false,
83
"editor.dragAndDrop": false,
4+
"editor.fontSize": 20,
95
"editor.minimap.enabled": false,
6+
"editor.mouseWheelZoom": true,
107
"editor.renderWhitespace": "all",
118
"files.exclude": {
129
"**/.*": true,
1310
"**/__pycache__": true
1411
},
12+
"git.detectSubmodules": false,
13+
"git.openRepositoryInParentFolders": "never",
14+
"markdown.preview.fontSize": 20,
15+
"python.testing.pytestArgs": [
16+
"tests"
17+
],
18+
"python.testing.pytestEnabled": true,
19+
"terminal.integrated.fontSize": 20,
20+
"terminal.integrated.mouseWheelZoom": true,
21+
"window.autoDetectColorScheme": true,
1522
"window.commandCenter": false,
1623
"workbench.editorAssociations": {
1724
"*.md": "vscode.markdown.preview.editor"
1825
},
1926
"workbench.layoutControl.enabled": false,
20-
"python.testing.pytestArgs": ["tests"],
21-
"python.testing.pytestEnabled": true,
22-
"window.autoDetectColorScheme": true,
2327
"workbench.preferredDarkColorTheme": "GitHub Dark",
2428
"workbench.preferredLightColorTheme": "GitHub Light"
2529
}
26-

0 commit comments

Comments
 (0)