Last active
August 24, 2020 11:44
-
-
Save LevPewPew/bf33e66d2a28ac7f80c25e6d5732d380 to your computer and use it in GitHub Desktop.
vs code setting to exclude certain folders from returning results in global search ctrl/cmd + shift + f
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"search.exclude": { | |
"**/.gitignore": true, | |
"**/.netlify": true, | |
"**/*?config*?": true, | |
"**/build": true, | |
"**/node_modules": true, | |
"**/package-lock.json": true, | |
"**/package.json": true, | |
"**/README.md": true | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment