From fea44195525980758a8badca5019a3f1cf3b1773 Mon Sep 17 00:00:00 2001 From: Nathan Hammond Date: Thu, 7 Apr 2022 13:21:39 +0800 Subject: [PATCH] Configure VS Code Extensions The extensions that we use were not consistently recommended. We had some included for the dev container while not including any recommendations for those running without the dev container. This aligns the two configurations and adds the missing `EditorConfig.EditorConfig` extension. --- .devcontainer/devcontainer.json | 3 ++- .vscode/extensions.json | 19 +++++++++++++++++++ 2 files changed, 21 insertions(+), 1 deletion(-) create mode 100644 .vscode/extensions.json diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index ab96101f9b267..f6279e61511cb 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -29,10 +29,11 @@ "christian-kohler.npm-intellisense", "dbaeumer.vscode-eslint", "eamodio.gitlens", + "EditorConfig.EditorConfig", "esbenp.prettier-vscode", "github.copilot", "github.vscode-pull-request-github", - "golang.Go", + "golang.go", "heybourn.headwind", "silvenon.mdx", "windmilleng.vscode-go-autotest", diff --git a/.vscode/extensions.json b/.vscode/extensions.json new file mode 100644 index 0000000000000..d5f5527865735 --- /dev/null +++ b/.vscode/extensions.json @@ -0,0 +1,19 @@ +{ + "recommendations": [ + "bradlc.vscode-tailwindcss", + "christian-kohler.npm-intellisense", + "dbaeumer.vscode-eslint", + "eamodio.gitlens", + "EditorConfig.EditorConfig", + "esbenp.prettier-vscode", + "github.copilot", + "github.vscode-pull-request-github", + "golang.go", + "heybourn.headwind", + "ms-azuretools.vscode-docker", + "ms-vscode-remote.remote-containers", + "silvenon.mdx", + "windmilleng.vscode-go-autotest", + "yzhang.markdown-all-in-one" + ] +}