All checks were successful
Lint / pre-commit Linting (push) Successful in 1m24s
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | mcr.microsoft.com/devcontainers/javascript-node | image | major | `1-20` → `4-20` | --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0Mi42Ni4wIiwidXBkYXRlZEluVmVyIjoiNDIuNjYuMCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOltdfQ==--> Reviewed-on: #51 Co-authored-by: Renovate Bot <renovate@horstenkamp.eu> Co-committed-by: Renovate Bot <renovate@horstenkamp.eu>
38 lines
1.3 KiB
JSON
38 lines
1.3 KiB
JSON
{
|
|
"name": "JS Dev Container",
|
|
"image": "mcr.microsoft.com/devcontainers/javascript-node:4-20",
|
|
"features": {
|
|
"ghcr.io/devcontainers/features/git:1": {},
|
|
"ghcr.io/devcontainers/features/git-lfs:1": {},
|
|
"ghcr.io/devcontainers-extra/features/pre-commit:2": {},
|
|
"ghcr.io/devcontainers-extra/features/npm-packages:1": {
|
|
"packages": "@google/gemini-cli"
|
|
}
|
|
},
|
|
"customizations": {
|
|
"vscode": {
|
|
"extensions": [
|
|
"ms-python.python",
|
|
"esbenp.prettier-vscode",
|
|
"vitest.explorer",
|
|
"google.gemini-cli-vscode-ide-companion",
|
|
"google.geminicodeassist"
|
|
],
|
|
"settings": {
|
|
"editor.formatOnSave": true,
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode"
|
|
}
|
|
}
|
|
},
|
|
"postStartCommand": "bash .devcontainer/setup.sh",
|
|
"remoteUser": "node",
|
|
"updateRemoteUserUID": true,
|
|
"mounts": [
|
|
"source=pipx-venvs,target=/home/node/.local/share/pipx,type=volume",
|
|
"source=pipx-bin,target=/home/node/.local/bin,type=volume",
|
|
"source=pre-commit-cache,target=/home/node/.cache/pre-commit,type=volume",
|
|
"source=${localEnv:USERPROFILE}/.gemini,target=/home/node/.gemini,type=bind",
|
|
"source=gvscode-extensions,target=/home/node/.cache/google-vscode-extension,type=volume"
|
|
]
|
|
}
|