Skip to content

Commit fe12a5d

Browse files
committed
(maint) Ignore node_modules in editor search
This is purely a developer convienence, as it excludes the node_modules folder from VSCode search and view.
1 parent c0853ff commit fe12a5d

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

.vscode/settings.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,12 @@
1111
"files.trimFinalNewlines": true,
1212
"files.trimTrailingWhitespace": false,
1313
"files.exclude": {
14+
"node_modules": true,
1415
"out": true, // set this to true to hide the "out" folder with the compiled JS files
1516
".vscode-test": true
1617
},
1718
"search.exclude": {
19+
"node_modules": true,
1820
"out": true // set this to false to include "out" folder in search results
1921
},
2022

0 commit comments

Comments
 (0)