style: auto-fix linting issues

This commit is contained in:
edideaur 2026-03-08 11:52:44 +00:00 committed by github-actions[bot]
parent 9e280f6094
commit b9bbbb6820
2 changed files with 30 additions and 32 deletions

View file

@ -1,16 +1,14 @@
{ {
"name": "Monochrome Dev Container", "name": "Monochrome Dev Container",
"build": { "build": {
"context": "..", "context": "..",
"dockerfile": "./Dockerfile" "dockerfile": "./Dockerfile"
}, },
"postCreateCommand": "git config --local core.editor \"code --wait\" && git config --local commit.gpgsign false && npm install && bun install", "postCreateCommand": "git config --local core.editor \"code --wait\" && git config --local commit.gpgsign false && npm install && bun install",
"customizations": { "customizations": {
"vscode": { "vscode": {
"extensions": ["dbaeumer.vscode-eslint", "esbenp.prettier-vscode"] "extensions": ["dbaeumer.vscode-eslint", "esbenp.prettier-vscode"]
} }
}, },
"mounts": [ "mounts": ["source=${env:HOME}/.gitconfig,target=/home/vscode/.gitconfig,type=bind,consistency=cached"]
"source=${env:HOME}/.gitconfig,target=/home/vscode/.gitconfig,type=bind,consistency=cached",
]
} }

42
.vscode/tasks.json vendored
View file

@ -1,23 +1,23 @@
{ {
"version": "2.0.0", "version": "2.0.0",
"tasks": [ "tasks": [
{ {
"type": "npm", "type": "npm",
"script": "build", "script": "build",
"group": { "group": {
"kind": "build", "kind": "build",
"isDefault": true "isDefault": true
}, },
"problemMatcher": [], "problemMatcher": [],
"label": "npm: build", "label": "npm: build",
"detail": "vite build" "detail": "vite build"
}, },
{ {
"type": "npm", "type": "npm",
"script": "dev", "script": "dev",
"problemMatcher": [], "problemMatcher": [],
"label": "npm: dev", "label": "npm: dev",
"detail": "vite" "detail": "vite"
} }
] ]
} }