chore: add a devcontainer setup (#50)
All checks were successful
Lint / pre-commit Linting (push) Successful in 1m30s
All checks were successful
Lint / pre-commit Linting (push) Successful in 1m30s
Add a devcontainer setup and remove a few redundent pre-commit hooks Reviewed-on: #50
This commit was merged in pull request #50.
This commit is contained in:
37
.devcontainer/devcontainer.json
Normal file
37
.devcontainer/devcontainer.json
Normal file
@@ -0,0 +1,37 @@
|
||||
{
|
||||
"name": "JS Dev Container",
|
||||
"image": "mcr.microsoft.com/devcontainers/javascript-node:1-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"
|
||||
]
|
||||
}
|
||||
11
.devcontainer/setup.sh
Normal file
11
.devcontainer/setup.sh
Normal file
@@ -0,0 +1,11 @@
|
||||
#!/bin/bash
|
||||
|
||||
# 1. Fix Git Permissions (Critical in Docker)
|
||||
git config --global --add safe.directory $(pwd)
|
||||
|
||||
# In your setup.sh or postCreateCommand
|
||||
sudo chown -R node:node /home/node/.cache/
|
||||
|
||||
# 2. Re-connect Git Hooks
|
||||
pre-commit install
|
||||
pre-commit install-hooks
|
||||
@@ -34,16 +34,6 @@ repos:
|
||||
- id: pretty-format-yaml
|
||||
args: [--autofix]
|
||||
|
||||
- repo: https://github.com/frnmst/md-toc
|
||||
rev: 9.0.0
|
||||
hooks:
|
||||
- id: md-toc
|
||||
|
||||
- repo: https://github.com/Lucas-C/pre-commit-hooks-java
|
||||
rev: 1.3.10
|
||||
hooks:
|
||||
- id: validate-html
|
||||
|
||||
- repo: https://github.com/pre-commit/mirrors-prettier
|
||||
rev: v4.0.0-alpha.8
|
||||
hooks:
|
||||
@@ -55,3 +45,4 @@ repos:
|
||||
hooks:
|
||||
- id: check-renovate
|
||||
- id: check-github-actions
|
||||
- id: check-github-workflows
|
||||
|
||||
Reference in New Issue
Block a user