generated from ludeeus/integration_blueprint
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.devcontainer.json
54 lines (54 loc) · 1.57 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
52
53
54
{
"customizations": {
"vscode": {
"extensions": [
"esbenp.prettier-vscode",
"github.vscode-pull-request-github",
"ms-python.python",
"ms-python.pylint",
"ms-python.vscode-pylance",
"ms-vscode.makefile-tools",
"ryanluker.vscode-coverage-gutters",
"visualstudioexptteam.vscodeintellicode"
],
"settings": {
"editor.formatOnPaste": false,
"editor.formatOnSave": true,
"editor.formatOnType": true,
"editor.tabSize": 4,
"files.eol": "\n",
"files.trimTrailingWhitespace": true,
"python.analysis.autoSearchPaths": false,
"python.analysis.typeCheckingMode": "basic",
"python.formatting.blackPath": "/usr/local/py-utils/bin/black",
"python.formatting.provider": "black",
"python.formatting.yapfPath": "/usr/local/py-utils/bin/yapf",
"python.languageServer": "Pylance",
"python.pythonPath": "/usr/bin/python3",
"python.testing.pytestEnabled": true,
"python.testing.unittestEnabled": false
}
}
},
"features": {
"rust": "latest"
},
"forwardPorts": [8123],
"image": "mcr.microsoft.com/devcontainers/python:3-bullseye",
"name": "Shell Recharge",
"portsAttributes": {
"0-8122": {
"label": "Auto-Forwarded - Other",
"onAutoForward": "ignore"
},
"8123": {
"label": "Home Assistant"
},
"8124-999999": {
"label": "Auto-Forwarded - Other",
"onAutoForward": "ignore"
}
},
"postCreateCommand": "scripts/setup",
"remoteUser": "vscode"
}