Created
September 15, 2022 14:18
-
-
Save danielwrobert/fcd0d5e1a23647ee57694cb2246e08ca to your computer and use it in GitHub Desktop.
VS Code Settings - WordPress Excludes
This file contains 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
{ | |
"files.exclude": { | |
"**/wp-admin": true, | |
"**/wp-includes": true, | |
"**/upgrade": true, | |
"**/uploads": true, | |
"**/wp-content/index.php": true, | |
"**/wp-content/plugins/akismet": true, | |
"**/wp-content/plugins/debug-bar": true, | |
"**/wp-content/plugins/debug-bar-console": true, | |
"**/wp-content/plugins/developer": true, | |
"**/wp-content/plugins/query-monitor": true, | |
"**/wp-content/plugins/woocommerce": true, | |
"**/wp-content/plugins/hello.php": true, | |
"**/wp-content/plugins/index.php": true, | |
"**/wp-content/themes/[!(twentytwentytwo|storefront)]*": true, | |
"**/wp-content/themes/twentytwenty": true, | |
"**/wp-content/themes/twentytwentyone": true, | |
"*.php": true, | |
"license.txt": true, | |
"LICENSE": true, | |
"readme.html": true | |
}, | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment