style: auto-fix linting issues

This commit is contained in:
EduardPrigoana 2026-02-05 16:39:58 +00:00 committed by github-actions[bot]
parent 4c1f8dcf38
commit 67276ba88d

View file

@ -1,22 +1,20 @@
// For format details, see https://aka.ms/devcontainer.json. For config options, see the // For format details, see https://aka.ms/devcontainer.json. For config options, see the
// README at: https://github.com/devcontainers/templates/tree/main/src/alpine // README at: https://github.com/devcontainers/templates/tree/main/src/alpine
{ {
"name": "Alpine Bun Dev Container", "name": "Alpine Bun Dev Container",
"image": "mcr.microsoft.com/devcontainers/base:alpine-3.22", "image": "mcr.microsoft.com/devcontainers/base:alpine-3.22",
"features": { "features": {
"ghcr.io/shyim/devcontainers-features/bun:0": {}, "ghcr.io/shyim/devcontainers-features/bun:0": {},
"ghcr.io/devcontainer-config/features/dot-config:3": {} "ghcr.io/devcontainer-config/features/dot-config:3": {}
}, },
"customizations": { "customizations": {
"vscode": { "vscode": {
"settings": { "settings": {
"terminal.integrated.sendKeybindingsToShell": true, "terminal.integrated.sendKeybindingsToShell": true,
"workbench.colorTheme": "Lilac" "workbench.colorTheme": "Lilac"
}, },
"extensions": [ "extensions": ["shubham-saudolla.lilac"]
"shubham-saudolla.lilac" }
] },
} "postCreateCommand": "bun --version"
},
"postCreateCommand": "bun --version"
} }