mirror of
https://github.com/sourcegraph/sourcegraph.git
synced 2026-02-06 16:11:57 +00:00
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:
parent
8d0c14d7c3
commit
627c392b31
3
.vscode/settings.json
vendored
3
.vscode/settings.json
vendored
@ -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,
|
||||
|
||||
Loading…
Reference in New Issue
Block a user