-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
.devcontainer.json
executable file
·47 lines (47 loc) · 1.25 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
{
"name": "ludeeus/integration_blueprint",
"image": "mcr.microsoft.com/devcontainers/python:3.12-bullseye",
"postCreateCommand": "scripts/init",
"forwardPorts": [
8123
],
"customizations": {
"vscode": {
"extensions": [
"ms-python.python",
"github.vscode-pull-request-github",
"ryanluker.vscode-coverage-gutters",
"ms-python.vscode-pylance",
"ms-python.pylint",
"streetsidesoftware.code-spell-checker",
"ms-azuretools.vscode-docker",
"EditorConfig.EditorConfig",
"github.vscode-github-actions",
"eamodio.gitlens",
"oderwat.indent-rainbow",
"ms-python.isort",
"yzhang.markdown-all-in-one",
"christian-kohler.path-intellisense",
"ms-python.black-formatter",
"redhat.vscode-yaml",
"DmitryDorofeev.empty-indent"
],
"settings": {
"files.eol": "\n",
"editor.tabSize": 4,
"python.pythonPath": "/usr/bin/python3",
"python.analysis.autoSearchPaths": false,
"python.formatting.provider": "black",
"python.formatting.blackPath": "/usr/local/py-utils/bin/black",
"editor.formatOnPaste": false,
"editor.formatOnSave": true,
"editor.formatOnType": true,
"files.trimTrailingWhitespace": true
}
}
},
"remoteUser": "vscode",
"features": {
"rust": "latest"
}
}