DEV: Include plugin directories in search tooling & IDEs (#29760)

Non-bundled plugins are gitignore'd, but we want them to show up in search tools / IDEs. Adding a `.ignore` file with a negative glob lets us achieve this.

Previously, it was up to individuals to work out how to configure their editor to do this when working on plugins.

Also adds negative matchers for the vscode config files, so they show up in the file picker & search.
This commit is contained in:
David Taylor 2024-11-15 16:57:08 +00:00 committed by GitHub
parent a28ab171ec
commit 276bc8a565
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 8 additions and 0 deletions

8
.ignore Normal file
View File

@ -0,0 +1,8 @@
# Non-bundled plugins are gitignore'd, but we want them to
# show up in search tools / IDEs so we un-ignore them here
!/plugins/*
# Allow these files to show up in vscode file selector, even
# though they're not git-tracked
!/.vscode/settings.json
!/.vscode/tasks.json