generated from bokulich-lab/q2-plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 2
/
.devcontainer.json
35 lines (35 loc) · 1.14 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
{
"name": "QIIME2 Dev",
"image": "quay.io/qiime2/core:${localEnv:QIIME_VERSION}",
"forwardPorts": [],
"postCreateCommand": "make prep-dev-container",
"postStartCommand": "qiime dev refresh-cache",
"remoteEnv": {
"QIIME_VERSION": "${localEnv:QIIME_VERSION}"
},
"extensions": [
"ms-python.vscode-pylance",
"visualstudioexptteam.vscodeintellicode",
"redhat.vscode-yaml",
"esbenp.prettier-vscode"
],
"settings": {
"python.defaultInterpreterPath": "/opt/conda/envs/qiime2-${localEnv:QIIME_VERSION}/bin/python",
"python.linting.flake8Enabled": true,
"python.linting.enabled": true,
"python.formatting.provider": "autopep8",
"python.testing.pytestEnabled": true,
"python.testing.pytestArgs": [
"${containerWorkspaceFolder}"
],
"editor.formatOnPaste": false,
"editor.formatOnSave": true,
"editor.formatOnType": true,
"files.trimTrailingWhitespace": true,
"terminal.integrated.profiles.linux": {
"zsh": {
"path": "/usr/bin/zsh"
}
}
}
}