From a09abaf8a5bcdf9143a50bcb1a587312a789d831 Mon Sep 17 00:00:00 2001 From: Chris Raible Date: Sun, 13 Oct 2024 15:21:53 +0100 Subject: [PATCH] Changed VSCode settings.json to ignore git submodules (#21286) no issue - This removes the `casper` and `source` submodules from the VSCode source control sidebar to simplify the view. - It also points all of VSCode's `git` commands in the command palette to the root repository (Ghost), so you don't have to specify which repo you want to commit to every time. - With this, you can simply run the "Git commit all" command in VSCode (and optionally map a keybinding to it), which adds all changed files to the commit and prompts for a commit message. --- .vscode/settings.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index 81d4d0b4d4..19da143591 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -22,5 +22,6 @@ }, "tailwindCSS.experimental.classRegex": [ ["clsx\\(([^)]*)\\)", "(?:'|\"|`)([^']*)(?:'|\"|`)"] - ] + ], + "git.detectSubmodules": false }