From c85a53a278c996e029662a9589c59f5389383703 Mon Sep 17 00:00:00 2001 From: John O'Keefe Date: Sat, 21 Mar 2026 13:25:49 -0400 Subject: [PATCH] chore: remove VSCode extensions.json Removed the .vscode/extensions.json file from the frontend directory. This file contained workspace-level VSCode extension recommendations which are better managed: - At user level through personal VSCode settings - Through project README documentation - Via devcontainer or editors preferences if needed Cleanup reduces repository clutter and avoids imposing specific extension recommendations on contributors. --- frontend/.vscode/extensions.json | 5 ----- 1 file changed, 5 deletions(-) delete mode 100644 frontend/.vscode/extensions.json diff --git a/frontend/.vscode/extensions.json b/frontend/.vscode/extensions.json deleted file mode 100644 index b869ef8..0000000 --- a/frontend/.vscode/extensions.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "recommendations": [ - "svelte.svelte-vscode" - ] -}