Skip to content

Commit d7232dc

Browse files
chore: added vscode extensions to devcontainer
These were sorely missing from the container.
1 parent 633a510 commit d7232dc

2 files changed

Lines changed: 32 additions & 6 deletions

File tree

.devcontainer/Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
FROM node:24

.devcontainer/devcontainer.json

Lines changed: 31 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,36 @@
11
{
22
"name": "Slyde",
3-
"image": "node:24",
4-
"remoteUser": "user",
3+
"build": { "dockerfile": "Dockerfile" },
4+
"postCreateCommand": "npm ci",
5+
"containerEnv": {
6+
"SHELL": "/bin/bash"
7+
},
8+
"workspaceFolder": "/workspaces/Slyde",
59
"features": {
6-
"git": "latest",
7-
"gh-cli": "latest"
10+
"ghcr.io/devcontainers/features/git:1": {},
11+
"ghcr.io/devcontainers/features/github-cli:1": {},
12+
"ghcr.io/dhoeric/features/act:1": {}
813
},
9-
"postCreateCommand": "npm ci",
10-
"workspaceFolder": "/workspace"
14+
"customizations": {
15+
"vscode": {
16+
"extensions": [
17+
"formulahendry.auto-close-tag",
18+
"aaron-bond.better-comments",
19+
"usernamehw.errorlens",
20+
"wmaurer.change-case",
21+
"streetsidesoftware.code-spell-checker",
22+
"fill-labs.dependi",
23+
"EditorConfig.EditorConfig",
24+
"dbaeumer.vscode-eslint",
25+
"Tobermory.es6-string-html",
26+
"pushqrdx.inline-html",
27+
"github.vscode-github-actions",
28+
"donjayamanne.githistory",
29+
"codezombiech.gitignore",
30+
"christian-kohler.npm-intellisense",
31+
"bradlc.vscode-tailwindcss",
32+
"DotJoshJohnson.xml"
33+
]
34+
}
35+
}
1136
}

0 commit comments

Comments
 (0)