Created
May 8, 2020 16:15
-
-
Save jsmithdev/818a26ed9eab3b1339d533506dd64640 to your computer and use it in GitHub Desktop.
vs code + salesforce: If you pull down whole org metadata and only want search to find only references in code
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": { | |
"**/node_modules": true, | |
"**/bower_components": true, | |
"**/.sfdx": true, | |
"**/.history": true, | |
}, | |
"search.include": { | |
"**/apex": true, | |
"**/aura": true, | |
"**/lwc": true, | |
"**/pages": true, | |
"**/components": true, | |
"**/triggers": true, | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment