|
4 | 4 | "service": "app", |
5 | 5 | "workspaceFolder": "/app", |
6 | 6 | "remoteUser": "devops", |
7 | | - "extensions": [ |
8 | | - "VisualStudioExptTeam.vscodeintellicode", |
9 | | - "ms-python.python", |
10 | | - "ms-python.vscode-pylance", |
11 | | - "alexkrechik.cucumberautocomplete", |
12 | | - "cstrap.flask-snippets", |
13 | | - "yzhang.markdown-all-in-one", |
14 | | - "bierner.github-markdown-preview", |
15 | | - "hnw.vscode-auto-open-markdown-preview", |
16 | | - "DavidAnson.vscode-markdownlint", |
17 | | - "donjayamanne.githistory", |
18 | | - "GitHub.vscode-pull-request-github", |
19 | | - "hbenl.vscode-test-explorer", |
20 | | - "LittleFoxTeam.vscode-python-test-adapter", |
21 | | - "njpwerner.autodocstring", |
22 | | - "redhat.vscode-yaml", |
23 | | - "rangav.vscode-thunder-client", |
24 | | - "streetsidesoftware.code-spell-checker", |
25 | | - "wholroyd.jinja", |
26 | | - "bbenoist.vagrant" |
27 | | - ], |
| 7 | + |
| 8 | + "customizations": { |
| 9 | + "vscode": { |
| 10 | + "settings": { |
| 11 | + "[python]": { |
| 12 | + "editor.defaultFormatter": "ms-python.black-formatter", |
| 13 | + "editor.formatOnSave": true |
| 14 | + }, |
| 15 | + "markdown-preview-github-styles.colorTheme": "light", |
| 16 | + "makefile.extensionOutputFolder": "/tmp", |
| 17 | + "python.testing.pytestArgs": [ |
| 18 | + "tests" |
| 19 | + ], |
| 20 | + "python.testing.unittestEnabled": false, |
| 21 | + "python.testing.pytestEnabled": true, |
| 22 | + "files.exclude": { |
| 23 | + "**/.git": true, |
| 24 | + "**/.DS_Store": true, |
| 25 | + "**/*.pyc": true, |
| 26 | + "**/__pycache__": true, |
| 27 | + "**/.pytest_cache": true |
| 28 | + } |
| 29 | + }, |
| 30 | + "extensions": [ |
| 31 | + "ms-python.python", |
| 32 | + "ms-python.vscode-pylance", |
| 33 | + "ms-python.pylint", |
| 34 | + "ms-python.flake8", |
| 35 | + "ms-python.black-formatter", |
| 36 | + "njpwerner.autodocstring", |
| 37 | + "wholroyd.jinja", |
| 38 | + "ms-vscode.makefile-tools", |
| 39 | + "tamasfe.even-better-toml", |
| 40 | + "yzhang.markdown-all-in-one", |
| 41 | + "hnw.vscode-auto-open-markdown-preview", |
| 42 | + "bierner.markdown-preview-github-styles", |
| 43 | + "davidanson.vscode-markdownlint", |
| 44 | + "donjayamanne.githistory", |
| 45 | + "GitHub.vscode-pull-request-github", |
| 46 | + "hbenl.vscode-test-explorer", |
| 47 | + "LittleFoxTeam.vscode-python-test-adapter", |
| 48 | + "redhat.vscode-yaml", |
| 49 | + "ms-azuretools.vscode-docker", |
| 50 | + "ms-kubernetes-tools.vscode-kubernetes-tools", |
| 51 | + "inercia.vscode-k3d", |
| 52 | + "rangav.vscode-thunder-client", |
| 53 | + "bbenoist.vagrant", |
| 54 | + "streetsidesoftware.code-spell-checker" |
| 55 | + ] |
| 56 | + } |
| 57 | + }, |
28 | 58 | "postCreateCommand": "sudo pip install -r requirements.txt" |
29 | 59 | } |
0 commit comments