All checks were successful
Lint / pre-commit Linting (push) Successful in 1m45s
43 lines
1.3 KiB
JSON
43 lines
1.3 KiB
JSON
{
|
|
"name": "Gemini Agent Quality Ops",
|
|
"build": {
|
|
"dockerfile": "Dockerfile"
|
|
},
|
|
"features": {
|
|
"ghcr.io/devcontainers/features/python:1": {
|
|
"version": "3.11",
|
|
"installTools": true,
|
|
"optimize": true
|
|
},
|
|
"ghcr.io/devcontainers/features/git:1": {},
|
|
"ghcr.io/devcontainers/features/git-lfs:1": {},
|
|
"ghcr.io/devcontainers-extra/features/pipx-package:1": {
|
|
"packages": "pre-commit, ruff"
|
|
}
|
|
},
|
|
"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"
|
|
}
|
|
}
|
|
},
|
|
"postCreateCommand": "npm install",
|
|
"postStartCommand": "bash .devcontainer/setup.sh",
|
|
"remoteUser": "node",
|
|
"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:HOME}/.gemini,target=/home/node/.gemini,type=bind"
|
|
]
|
|
}
|