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).
This commit is contained in:
DocW
2026-02-01 14:13:52 -05:00
parent 0036b323ac
commit bbd0265f2e

2
.gitignore vendored
View File

@@ -38,7 +38,7 @@ bin/
/.nb-gradle/ /.nb-gradle/
# VS Code # VS Code
.vscode/ .vscode/*
# Mac OS # Mac OS
.DS_Store .DS_Store