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

44
.vscode/tasks.json vendored
View file

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