-
Notifications
You must be signed in to change notification settings - Fork 78
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(devcontainer): vscode devcontainer configuration (#682)
* feat: ignore .pnpm-store directory * feat(devcontainer): create vscode devcontainer configuration * chore(gitignore): ignore pnpm-store directory * feat: remove -o directive * chore: remove empty lines * feat: add java, pnpm and poetry as features --------- Co-authored-by: Adrian Dimech <[email protected]>
- Loading branch information
1 parent
6ade7de
commit d01935d
Showing
4 changed files
with
33 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
{ | ||
"name": "Node.js 18 & TypeScript", | ||
"image": "mcr.microsoft.com/devcontainers/typescript-node:1-18-bullseye", | ||
"features": { | ||
"ghcr.io/devcontainers/features/java": { | ||
"installGradle": true, | ||
"installMaven": true, | ||
"version": "11" | ||
}, | ||
"ghcr.io/devcontainers-contrib/features/pnpm": { | ||
"version": "latest" | ||
}, | ||
"ghcr.io/devcontainers-contrib/features/poetry": { | ||
"version": "latest" | ||
}, | ||
"ghcr.io/devcontainers-contrib/features/projen:1": {} | ||
}, | ||
"customizations": { | ||
"vscode": { | ||
"extensions": [ | ||
"dbaeumer.vscode-eslint", | ||
"esbenp.prettier-vscode", | ||
"GitHub.vscode-github-actions" | ||
] | ||
} | ||
}, | ||
"postCreateCommand": "sudo apt update && sudo apt upgrade -y", | ||
"postStartCommand": "sudo apt update" | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
#!/bin/sh | ||
set -eo pipefail | ||
set -e pipefail | ||
|
||
. "$(dirname "$0")/_/husky.sh" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters