From 647e126f34899c314af35fa62d59dbeeefe4fcb4 Mon Sep 17 00:00:00 2001 From: Samuel Therrien Date: Fri, 22 Mar 2024 19:22:57 -0400 Subject: [PATCH] More unrecommended extensions --- .vscode/extensions.json | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) diff --git a/.vscode/extensions.json b/.vscode/extensions.json index 407e2d30a..b1348de6a 100644 --- a/.vscode/extensions.json +++ b/.vscode/extensions.json @@ -15,22 +15,33 @@ "pkief.material-icon-theme", // "redhat.vscode-xml", "redhat.vscode-yaml", - "tamasfe.even-better-toml", + "tamasfe.even-better-toml" ], "unwantedRecommendations": [ // Must disable in this workspace // // https://github.com/microsoft/vscode/issues/40239 // // + // Use workspace version instead + "ms-vscode.vscode-typescript-next", // even-better-toml has format on save "bungcip.better-toml", // VSCode has implemented an optimized version "coenraads.bracket-pair-colorizer", "coenraads.bracket-pair-colorizer-2", "shardulm94.trailing-spaces", + // Lots of conflicts + "esbenp.prettier-vscode", + "rvest.vs-code-prettier-eslint", + // Not project-configurable. And the ESLint plugin is sufficient in JS/TS projects + "sonarsource.sonarlint-vscode", // Don't use two mypy extensions simultaneously "matangover.mypy", // Obsoleted by Pylance "ms-pyright.pyright", + // These are Deprecated + "eg2.tslint", + "ms-vscode.vscode-typescript-tslint-plugin", + "simonsiefke.prettier-vscode", // // Don't recommend to autoinstall // // @@ -44,6 +55,6 @@ // Not configurable per workspace, tends to conflict with other linters "sonarsource.sonarlint-vscode", // Prefer using VSCode itself as a text editor - "vscodevim.vim", - ], + "vscodevim.vim" + ] }