forked from theNewFlesh/hidebound
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.devcontainer.json
51 lines (51 loc) · 2.05 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
45
46
47
48
49
50
51
{
"name": "${localWorkspaceFolderBasename}",
"dockerComposeFile": "docker/docker-compose.yml",
"service": "${localWorkspaceFolderBasename}",
"workspaceFolder": "/home/ubuntu/${localWorkspaceFolderBasename}",
"settings": {
"mypy.dmypyExecutable": "/home/ubuntu/.dev-env/bin/dmypy",
"python.analysis.extraPaths": ["/home/ubuntu/.dev-packages"],
"python.autoComplete.extraPaths": ["/home/ubuntu/.dev-packages"],
"python.defaultInterpreterPath": "/home/ubuntu/.dev-env/bin/python3",
"python.linting.flake8Path": "/home/ubuntu/.dev-env/bin/flake8",
"python.linting.mypyPath": "/home/ubuntu/.dev-env/bin/mypy",
"python.pythonPath": "/home/ubuntu/.dev-env/bin/python3",
"terminal.integrated.cwd": "/home/ubuntu/${localWorkspaceFolderBasename}"
},
"extensions": [
"arturock.gitstash",
"bibhasdn.unique-lines",
"bungcip.better-toml",
"christian-kohler.path-intellisense",
"compulim.indent4to2",
"eamodio.gitlens",
"esbenp.prettier-vscode",
"euskadi31.json-pretty-printer",
"fabiospampinato.vscode-diff",
"forbeslindesay.forbeslindesay-taskrunner",
"gruntfuggly.todo-tree",
"hbenl.vscode-test-explorer",
"ibm.output-colorizer",
"janisdd.vscode-edit-csv",
"konstantin.wrapselection",
"littlefoxteam.vscode-python-test-adapter",
"magicstack.magicpython",
"matangover.mypy",
"mhutchie.git-graph",
"ms-azuretools.vscode-docker",
"ms-python.anaconda-extension-pack",
"ms-python.python",
"ms-python.vscode-pylance",
"ms-vscode.sublime-keybindings",
"ms-vscode.test-adapter-converter",
"ohmnivore.twospacefourspace",
"shd101wyy.markdown-preview-enhanced",
"the-new-flesh.henanigans",
"tht13.rst-vscode",
"tombonnike.vscode-status-bar-format-toggle",
"uctakeoff.vscode-counter",
"visualstudioexptteam.vscodeintellicode",
"yzhang.markdown-all-in-one"
]
}