chore: add VSCode extensions recommendations and update devcontainer configuration

This commit is contained in:
yubintw
2025-03-15 19:39:33 +08:00
parent bc51179cd4
commit 692da86eae
2 changed files with 20 additions and 1 deletions

View File

@@ -12,7 +12,19 @@
}, },
// Use 'forwardPorts' to make a list of ports inside the container available locally. // Use 'forwardPorts' to make a list of ports inside the container available locally.
"forwardPorts": [6080, 5901], "forwardPorts": [
6080,
5901
],
"customizations": {
"vscode": {
"extensions": [
"streetsidesoftware.code-spell-checker",
"EditorConfig.EditorConfig",
"dbaeumer.vscode-eslint"
]
}
},
// Use 'postCreateCommand' to run commands after the container is created. // Use 'postCreateCommand' to run commands after the container is created.
// "postCreateCommand": "yarn install", // "postCreateCommand": "yarn install",

7
.vscode/extensions.json vendored Normal file
View File

@@ -0,0 +1,7 @@
{
"recommendations": [
"streetsidesoftware.code-spell-checker",
"editorconfig.editorconfig",
"dbaeumer.vscode-eslint"
]
}