Created
October 26, 2020 17:32
-
-
Save frv-dev/51b9f1c8adf5c7809affae55e0e229e6 to your computer and use it in GitHub Desktop.
[Code Easy - DON'T REMOVE] Settings for VSCode + PHP
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
{ | |
"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" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Po cara, no meu vscode ficou tudo cinza, como se não estivesse em execução, o que eu posso ter feito de errado?