Skip to content

Commit

Permalink
Merge pull request #14 from arol-polito/12-feat-builddevcontainer-add…
Browse files Browse the repository at this point in the history
…-vs-code-extension-black-formatter

build(devcontainer): add VS Code Extension: Black Formatter
  • Loading branch information
arol-varesi authored Nov 18, 2024
2 parents 3214009 + b85a69d commit 809a63b
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
"name": "Ubuntu",
// Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile
"image": "mcr.microsoft.com/devcontainers/base:noble",

// Features to add to the dev container. More info: https://containers.dev/features.
"features": {
"ghcr.io/devcontainers/features/azure-cli:1": {},
Expand All @@ -14,20 +13,20 @@
"ghcr.io/devcontainers-extra/features/poetry:2": {},
"ghcr.io/devcontainers-extra/features/tailscale:1": {}
},

// Use 'forwardPorts' to make a list of ports inside the container available locally.
// "forwardPorts": [],

// Use 'postCreateCommand' to run commands after the container is created.
// "postCreateCommand": "uname -a",

// Configure tool-specific properties.
"customizations": {
"vscode": {
"extensions": ["esbenp.prettier-vscode", "mhutchie.git-graph"]
"extensions": [
"esbenp.prettier-vscode",
"mhutchie.git-graph",
"ms-python.black-formatter"
]
}
}

// Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root.
// "remoteUser": "root"
}

0 comments on commit 809a63b

Please sign in to comment.