fix ignoring of generated assets in VS Code search (#57213)

The previous glob with `!(*.go)` was causing all files in `ui/assets/` to be shown.
This commit is contained in:
Quinn Slack 2023-09-29 15:54:23 -07:00 committed by GitHub
parent 8d0c14d7c3
commit 627c392b31
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -3,7 +3,8 @@
"**/node_modules": true,
"**/bower_components": true,
"dist": true,
"ui/assets/!(*.go)": true,
"ui/assets/": true,
"ui/assets/*.go": false,
"client/browser/build": true,
"**/coverage": true,
"**/out": true,