Skip to content

Instantly share code, notes, and snippets.

@frv-dev
Created October 26, 2020 17:32
Show Gist options
  • Star 17 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save frv-dev/51b9f1c8adf5c7809affae55e0e229e6 to your computer and use it in GitHub Desktop.
Save frv-dev/51b9f1c8adf5c7809affae55e0e229e6 to your computer and use it in GitHub Desktop.
[Code Easy - DON'T REMOVE] Settings for VSCode + PHP
{
"workbench.startupEditor": "newUntitledFile",
"window.zoomLevel": 3,
"editor.formatOnSave": true,
"files.watcherExclude": {
"**/.git/objects/**": true,
"**/.git/subtree-cache/**": true,
"**/node_modules/*/**": true,
"**/.hg/store/**": true,
"**/vendor/*/**": true
},
"files.exclude": {
"**/.classpath": true,
"**/.project": true,
"**/.settings": true,
"**/.factorypath": true
},
// PHP
// Here you can use your path to php
"php.validate.executablePath": "C:\\xampp\\php\\php.exe",
"php.suggest.basic": false,
"phpSniffer.run": "onType",
"phpSniffer.autoDetect": true,
// Here you can use another coding-style
"phpSniffer.standard": "PSR12",
"[php]": {
"editor.defaultFormatter": "wongjn.php-sniffer"
}
}
@brunopurper
Copy link

Po cara, no meu vscode ficou tudo cinza, como se não estivesse em execução, o que eu posso ter feito de errado?

@JefersonBatistaSouza
Copy link

@brunopurper "workbench.colorTheme": "Default Dark+",

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment