{
	"phpcs.enable": true,
  "phpcs.standard": "./vendor/wp-coding-standards/wpcs/WordPress",
"phpcs.executablePath": "./vendor/bin/phpcs",
// Configure glob patterns of file paths to exclude from file watching. Patterns must match on absolute paths (i.e. prefix with ** or the full path to match properly). Changing this setting requires a restart. When you experience Code consuming lots of cpu time on startup, you can exclude large folders to reduce the initial load.
"files.watcherExclude": {
		"**/.git/objects/**": true,
		"**/.git/subtree-cache/**": true,
		"**/node_modules/*/**": true,
		"**/public/**": true // adding this solved the slowdown
	},
"php.suggest.basic": false
}
