-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdevcontainer.json
More file actions
43 lines (41 loc) · 1.25 KB
/
devcontainer.json
File metadata and controls
43 lines (41 loc) · 1.25 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
36
37
38
39
40
41
42
43
{
"name": "Codeinstitute template",
"dockerComposeFile": "docker-compose.yml",
"service": "app",
"workspaceFolder": "/workspace/template",
"customizations": {
"vscode": {
"extensions": [
"ms-python.python",
"formulahendry.auto-close-tag",
"eventyret.bootstrap-4-cdn-snippet",
"hookyqr.beautify",
"matt-rudge.auto-open-preview-panel",
"ms-toolsai.jupyter",
"ms-toolsai.jupyter-keymap",
"ms-toolsai.jupyter-renderers",
"bierner.markdown-preview-github-styles"
],
"settings": {
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"**/.github": true,
"**/.gitp*": true,
"**/.vscode": true,
"**/core.Microsoft*": true,
"**/core.mongo*": true,
"**/core.python*": true
},
"editor.defaultFormatter": "HookyQR.beautify",
"python.linting.pycodestyleEnabled": true,
"python.terminal.activateEnvironment": false,
"workbench.iconTheme": "none"
}
}
},
"remoteUser": "codeany"
}