-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdevcontainer.json
More file actions
38 lines (38 loc) · 1.02 KB
/
Copy pathdevcontainer.json
File metadata and controls
38 lines (38 loc) · 1.02 KB
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
{
"name": "Python 3",
"build": {
"dockerfile": "Dockerfile",
"context": "..",
"target": "dev",
},
"customizations": {
"vscode": {
"settings": {
"terminal.integrated.defaultProfile.linux": "bash",
"python.defaultInterpreterPath": "/usr/bin/python3",
"autoDocstring.docstringFormat": "sphinx",
"[python]": {
"editor.defaultFormatter": "charliermarsh.ruff",
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.fixAll.ruff": "explicit",
"source.organizeImports.ruff": "explicit",
},
},
},
"extensions": [
"ms-toolsai.jupyter",
"ms-python.python",
"charliermarsh.ruff",
"ms-python.mypy-type-checker",
"editorconfig.editorconfig",
"njpwerner.autodocstring",
"usernamehw.errorlens",
"Gruntfuggly.todo-tree",
"eamodio.gitlens",
"github.vscode-github-actions",
],
},
},
"remoteUser": "vscode",
}