From 692da86eaeea5f83c1bb4152c4831f1d55060fe0 Mon Sep 17 00:00:00 2001 From: yubintw Date: Sat, 15 Mar 2025 19:39:33 +0800 Subject: [PATCH] chore: add VSCode extensions recommendations and update devcontainer configuration --- .devcontainer/devcontainer.json | 14 +++++++++++++- .vscode/extensions.json | 7 +++++++ 2 files changed, 20 insertions(+), 1 deletion(-) create mode 100644 .vscode/extensions.json diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 9668066..578e91c 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -12,7 +12,19 @@ }, // 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. // "postCreateCommand": "yarn install", diff --git a/.vscode/extensions.json b/.vscode/extensions.json new file mode 100644 index 0000000..29eb506 --- /dev/null +++ b/.vscode/extensions.json @@ -0,0 +1,7 @@ +{ + "recommendations": [ + "streetsidesoftware.code-spell-checker", + "editorconfig.editorconfig", + "dbaeumer.vscode-eslint" + ] +} \ No newline at end of file