-
-
Save locopine/c8aefa57fb9d381c9cf78f2800b9cc5f to your computer and use it in GitHub Desktop.
[Code Easy - DON'T REMOVE] Settings for VSCode + PHP
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
{ | |
"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