diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index 311f9925..faec9f09 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -4,4 +4,5 @@ RUN apt-get update && \ apt-get install --yes --no-install-recommends \ git && \ pecl install xdebug && \ + pear install PHP_CodeSniffer && \ docker-php-ext-enable xdebug \ No newline at end of file diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 1425601e..6e625b8a 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -6,7 +6,10 @@ "vscode": { // Set *default* container specific settings.json values on container create. "settings": { - "php.validate.executablePath": "/usr/local/bin/php" + "php.validate.executablePath": "/usr/local/bin/php", + "phpSniffer.executablesFolder": "/usr/local/bin/", + "phpcs.executablePath": "/usr/local/bin/phpcs", + "phpcs.lintOnType": false }, // Add the IDs of extensions you want installed when the container is created. @@ -14,7 +17,8 @@ "xdebug.php-debug", "bmewburn.vscode-intelephense-client", "philfontaine.autolaunch", - "eamodio.gitlens" + "eamodio.gitlens", + "shevaua.phpcs" ] } }, diff --git a/.devcontainer/xdebug.ini b/.devcontainer/xdebug.ini index 9c5f1f10..1079f0b8 100644 --- a/.devcontainer/xdebug.ini +++ b/.devcontainer/xdebug.ini @@ -1,5 +1,3 @@ -zend_extension=xdebug.so - [xdebug] xdebug.mode=develop,debug xdebug.client_host=localhost