3 Commits
+19 -17
View File
@@ -1,31 +1,33 @@
{ {
"name": "Python", "name": "TF",
"runArgs": [ "runArgs": [
"--network=host" "--network=host"
], ],
"image": "git.luke-else.co.uk/luke-else/python-dev:latest", "image": "git.luke-else.co.uk/luke-else/tf-dev:latest",
"remoteUser": "dev", "remoteUser": "dev",
"customizations": { "customizations": {
"vscode": { "vscode": {
"settings": { "settings": {
"editor.formatOnSave": true, "editor.formatOnSave": true,
"[python]": {
"editor.defaultFormatter": "ms-python.black-formatter"
},
"python.defaultInterpreterPath": "/usr/local/bin/python",
"python.analysis.typeCheckingMode": "basic",
"remote.autoForwardPorts": false, "remote.autoForwardPorts": false,
"terminal.integrated.defaultProfile.linux": "zsh" "terminal.integrated.profiles.linux": {
}, "tmux-shell": {
"extensions": [ "path": "tmux",
"ms-azuretools.vscode-docker", "args": [
"ms-python.python", "new-session",
"ms-python.vscode-pylance", "-A",
"ms-python.black-formatter", "-s",
"charliermarsh.ruff", "dev"
"mermaidchart.vscode-mermaid-chart"
] ]
} }
}, },
"postCreateCommand": "uv sync" "terminal.integrated.defaultProfile.linux": "tmux-shell"
},
"extensions": [
"ms-azuretools.vscode-docker",
"mermaidchart.vscode-mermaid-chart",
"opentofu.vscode-opentofu"
]
}
}
} }