-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy path.devcontainer.json
44 lines (39 loc) · 1.51 KB
/
.devcontainer.json
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
36
37
38
39
40
41
42
43
44
{
"name": "Existing Docker Compose (Extend)",
"dockerComposeFile": ["docker-compose.yml"],
"service": "svc",
"workspaceFolder": "/workspace",
// Set *default* container specific settings.json values on container create.
"settings": {
"python.formatting.provider": "black",
"_workbench.uiExtensions": ["peterjausovec.vscode-docker"],
"python.jediEnabled": false,
"python.testing.pytestEnabled": true,
"pythonTestExplorer.testFramework": "pytest",
"python.testing.autoTestDiscoverOnSaveEnabled": true,
"python.pythonPath": "/usr/local/bin/python3",
"python.testing.pytestPath": "/usr/local/bin/pytest",
"editor.formatOnSave": false,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.fontFamily": "Cascadia Code, Fira Code",
"[markdown]": {
"editor.defaultFormatter": "DavidAnson.vscode-markdownlint"
},
"[python]": {
"editor.defaultFormatter": "ms-python.python"
},
"grammarly.files.include": ["**/*.md", "**/*.txt"]
},
// Add the IDs of extensions you want installed when the container is created.
"extensions": [
"github.copilot",
"eamodio.gitlens",
"shardulm94.trailing-spaces",
"esbenp.prettier-vscode",
"ms-python.python",
"gruntfuggly.todo-tree",
"cweijan.vscode-database-client2",
"littlefoxteam.vscode-python-test-adapter",
"ms-azuretools.vscode-docker"
]
}