From 9b7de9ebe888ec7d84fafc4dd46b4603b8784ef2 Mon Sep 17 00:00:00 2001 From: J M Rossy Date: Sun, 14 Jul 2024 16:25:22 +0100 Subject: [PATCH] chore: Add some more useful vscode extensions (#4113) --- mono.code-workspace | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) diff --git a/mono.code-workspace b/mono.code-workspace index 7961845c6..3b7675e33 100644 --- a/mono.code-workspace +++ b/mono.code-workspace @@ -39,12 +39,30 @@ // List of extensions which should be recommended for users of this workspace. "recommendations": [ + // Github's copilot (the nightly version) "GitHub.copilot-nightly", + // Review and manage PRs "GitHub.vscode-pull-request-github", + // Add useful git-related features "eamodio.gitlens", + // Show a render preview of markdown files "bierner.github-markdown-preview", + // Add a live share feature for collaboration "ms-vsliveshare.vsliveshare-pack", - "esbenp.prettier-vscode" + // Prettier's official extension (code formatting) + "esbenp.prettier-vscode", + // Spell-checker for catching typos + "streetsidesoftware.code-spell-checker", + // ESlint official extension (JS linting) + "dbaeumer.vscode-eslint", + // Markdown linting + "davidanson.vscode-markdownlint", + // Language support for MDX + "unifiedjs.vscode-mdx", + // More readable TS compiler errors + "yoavbls.pretty-ts-errors", + // Yaml language support + "redhat.vscode-yaml", ], // List of extensions recommended by VS Code that should not be recommended for users of this workspace. "unwantedRecommendations": []