From bbd0265f2efbf87a05cba1106f4156ed71245507 Mon Sep 17 00:00:00 2001 From: DocW Date: Sun, 1 Feb 2026 14:13:52 -0500 Subject: [PATCH 1/3] Allow files in .vscode/ to be included in Git repo Allow the exclusion of files in the `.vscode/` directory to be overridden via negated patterns (gitignore patterns beginning with `!`) by changing the pattern in `.gitignore` from `.vscode/` to `.vscode/*` (i.e., by ignoring the files in `.vscode/` rather than the `.vscode/` directory itself). --- .gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index b7256e4..f81ceb8 100644 --- a/.gitignore +++ b/.gitignore @@ -38,7 +38,7 @@ bin/ /.nb-gradle/ # VS Code -.vscode/ +.vscode/* # Mac OS .DS_Store From 772dabc708cc53509a7e4947b9695be8b562ff5b Mon Sep 17 00:00:00 2001 From: DocW Date: Sun, 1 Feb 2026 14:19:36 -0500 Subject: [PATCH 2/3] Track VS Code settings in repository Add negated pattern to `.gitignore` for the VS Code settings file (`.vscode/settings.json`). --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index f81ceb8..1db1534 100644 --- a/.gitignore +++ b/.gitignore @@ -39,6 +39,7 @@ bin/ # VS Code .vscode/* +!.vscode/settings.json # Mac OS .DS_Store From 647fe815374788cd485a755c29f2db26b674d2ee Mon Sep 17 00:00:00 2001 From: DocW Date: Sun, 1 Feb 2026 14:20:58 -0500 Subject: [PATCH 3/3] Track VS Code Java formatter config in repo Add negated pattern to `.gitignore` for the VS Code Java formatter configuration file (`.vscode/java-formatter.xml`). --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 1db1534..31342f7 100644 --- a/.gitignore +++ b/.gitignore @@ -39,6 +39,7 @@ bin/ # VS Code .vscode/* +!.vscode/java-formatter.xml !.vscode/settings.json # Mac OS