From e63c18cdcdde694253923c73579aabcafcf5cfd2 Mon Sep 17 00:00:00 2001 From: VariableVince <24507472+VariableVince@users.noreply.github.com> Date: Tue, 14 Apr 2026 05:21:08 +0200 Subject: [PATCH] VSCode: have it recommend trusted Prettier and Socket Security extensions (#3658) ## Description: Have VSCode recommend two trusted extensions when Workspace is opened for the first time, and in the Extensions tab under Workspace Recommendations. https://code.visualstudio.com/docs/configure/extensions/extension-marketplace#_workspace-recommended-extensions - Socket Security to get more information and warnings about deps in package.json and package-lock.json. We use Socket Security on Github; this extension helps get the same info but earlier. Another developer might prefer Socket CLI https://docs.socket.dev/docs/getting-started - Prettier, eg. to be able to use via the Format Document command per file, so there's no need for npm format (which force writes to all files which can be scary even though Git sees which ones are actually changed). ## Please complete the following: - [x] I have added screenshots for all UI updates - [x] I process any text displayed to the user through translateText() and I've added it to the en.json file - [x] I have added relevant tests to the test directory - [x] I confirm I have thoroughly tested these changes and take full responsibility for any bugs introduced ## Please put your Discord username so you can be contacted if a bug or regression is found: tryout33 --- .vscode/extensions.json | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 .vscode/extensions.json diff --git a/.vscode/extensions.json b/.vscode/extensions.json new file mode 100644 index 000000000..05a26d6b3 --- /dev/null +++ b/.vscode/extensions.json @@ -0,0 +1,6 @@ +{ + "recommendations": [ + "socketsecurity.vscode-socket-security", + "esbenp.prettier-vscode" + ] +}