-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathdevcontainer.json
More file actions
73 lines (73 loc) · 2.25 KB
/
Copy pathdevcontainer.json
File metadata and controls
73 lines (73 loc) · 2.25 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "Microsoft Foundry Dev Container",
"image": "mcr.microsoft.com/devcontainers/python:3.13",
"remoteUser": "vscode",
"containerEnv": {
"UV_LINK_MODE": "copy",
"PYTHONDONTWRITEBYTECODE": "1"
},
"features": {
"ghcr.io/devcontainers/features/azure-cli:1": {},
"ghcr.io/azure/azure-dev/azd:0": {},
"ghcr.io/devcontainers/features/github-cli:1": {},
"ghcr.io/devcontainers/features/node:1": {}
},
"customizations": {
"vscode": {
"settings": {
"python.defaultInterpreterPath": ".venv/bin/python",
"python.analysis.typeCheckingMode": "basic",
"editor.formatOnSave": true,
"editor.rulers": [
88,
120
],
"[python]": {
"editor.defaultFormatter": "charliermarsh.ruff",
"editor.codeActionsOnSave": {
"source.fixAll.ruff": "explicit",
"source.organizeImports.ruff": "explicit"
}
},
"ruff.enable": true,
"ruff.lineLength": 88,
"ruff.lint.enable": true,
"ruff.organizeImports": true,
"ruff.fixAll": true,
"files.exclude": {
"**/__pycache__": true,
"**/.pytest_cache": true,
"**/.ruff_cache": true
},
"jupyter.askForKernelRestart": false
},
"extensions": [
"GitHub.copilot",
"GitHub.copilot-chat",
"GitHub.remotehub",
"bierner.github-markdown-preview",
"github.vscode-pull-request-github",
"ms-azuretools.azure-dev",
"ms-azuretools.vscode-azure-github-copilot",
"ms-azuretools.vscode-azureresourcegroups",
"ms-azuretools.vscode-azurestorage",
"ms-azuretools.vscode-bicep",
"ms-azuretools.vscode-docker",
"ms-python.python",
"ms-python.debugpy",
"charliermarsh.ruff",
"ms-toolsai.jupyter",
"ms-vscode.vscode-node-azure-pack",
"ms-vscode.powershell",
"ms-vscode-remote.remote-containers",
"ms-vscode-remote.vscode-remote-extensionpack",
"redhat.vscode-yaml",
"tomoki1207.pdf",
"usernamehw.errorlens",
"eamodio.gitlens"
]
}
},
"postCreateCommand": ".devcontainer/post-create.sh",
"postStartCommand": ".devcontainer/post-start.sh"
}