From b739987996907d40e3c5e0ec29bb88b3f9010157 Mon Sep 17 00:00:00 2001 From: Loki Rautio Date: Sun, 15 Mar 2026 02:44:59 -0500 Subject: [PATCH] Remove .vscode settings by default this makes it impossible to search for stuff in the assets with VS Code which sucks. if you need this you can just copy the file locally --- .gitignore | 7 ++----- .vscode/{settings.json => settings.example.json} | 0 2 files changed, 2 insertions(+), 5 deletions(-) rename .vscode/{settings.json => settings.example.json} (100%) diff --git a/.gitignore b/.gitignore index bb3ea8bd..40a690b0 100644 --- a/.gitignore +++ b/.gitignore @@ -379,11 +379,8 @@ MigrationBackup/ FodyWeavers.xsd # VS Code files for those working on multiple tools -.vscode/* -!.vscode/settings.json -!.vscode/tasks.json -!.vscode/launch.json -!.vscode/extensions.json +.vscode/ +!.vscode/*.example.json *.code-workspace # Local History for Visual Studio Code diff --git a/.vscode/settings.json b/.vscode/settings.example.json similarity index 100% rename from .vscode/settings.json rename to .vscode/settings.example.json