Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 82e238b

Browse files
authored
chore: exclude generated files from vscode search by default (coder#9530)
Anyone can feel free to revert some of these, but they were constantly annoying when searching for symbols in our code.
1 parent 58f7071 commit 82e238b

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

.vscode/settings.json

+9-2
Original file line numberDiff line numberDiff line change
@@ -190,8 +190,15 @@
190190
"**/node_modules": true
191191
},
192192
"search.exclude": {
193-
"scripts/metricsdocgen/metrics": true,
194-
"docs/api/*.md": true
193+
"**.pb.go": true,
194+
"**/*.gen.json": true,
195+
"**/testdata/*": true,
196+
"**Generated.ts": true,
197+
"coderd/apidoc/**": true,
198+
"docs/api/*.md": true,
199+
"docs/templates/*.md": true,
200+
"LICENSE": true,
201+
"scripts/metricsdocgen/metrics": true
195202
},
196203
// Ensure files always have a newline.
197204
"files.insertFinalNewline": true,

0 commit comments

Comments
 (0)