-
-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy path.devcontainer.json
More file actions
35 lines (35 loc) · 982 Bytes
/
.devcontainer.json
File metadata and controls
35 lines (35 loc) · 982 Bytes
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": "ludeeus/aiogithubapi",
"image": "mcr.microsoft.com/vscode/devcontainers/base:ubuntu",
"postCreateCommand": "scripts/setup",
"postStartCommand": "scripts/motd",
"features": {
"ghcr.io/va-h/devcontainers-features/uv:1": {
"version": "0.10.11",
"shellautocompletion": true
}
},
"customizations": {
"extensions": [
"ms-python.python",
"github.vscode-pull-request-github",
"ryanluker.vscode-coverage-gutters",
"ms-python.vscode-pylance"
],
"settings": {
"files.eol": "\n",
"editor.tabSize": 4,
"terminal.integrated.shell.linux": "/bin/bash",
"python.pythonPath": "/usr/local/python/bin/python",
"python.analysis.autoSearchPaths": false,
"python.linting.pylintEnabled": true,
"python.linting.enabled": true,
"python.formatting.provider": "black",
"editor.formatOnPaste": false,
"editor.formatOnSave": true,
"editor.formatOnType": true,
"files.trimTrailingWhitespace": true
}
},
"remoteUser": "vscode"
}