-
-
Save tsega/8e4ddf53281a60f0b86055c741676194 to your computer and use it in GitHub Desktop.
Visual Studio Code workspace settings
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
{ | |
/* DDEV container */ | |
/* PHP Linting */ | |
"php.validate.executablePath": "/usr/bin/php", | |
/* PHP Sniffer & Beautifier */ | |
"phpsab.executablePathCS": "/var/www/html/vendor/bin/phpcs", | |
"phpsab.executablePathCBF": "/var/www/html/vendor/bin/phpcbf", | |
"phpsab.standard": "/var/www/html/phpcs.xml", | |
"phpsab.snifferEnable": true, | |
"phpsab.fixerEnable": true, | |
"phpsab.snifferMode": "onType", | |
"phpsab.debug": false, | |
"phpsab.fixerArguments": [], | |
/* phpstan */ | |
"phpstan.enabled": true, | |
"phpstan.showProgress": true, | |
"phpstan.binPath": "/var/www/html/vendor/bin/phpstan", | |
"phpstan.configFile": "/var/www/html/phpstan.neon" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment