First, make sure you have Composer installed in your system.
In order to use the WPCS you'll need the PHP_CodeSniffer (PHPCS) and the WPCS rules (sniffs) installed.
You can install PHP_CodeSniffer globally using Composer by running this command:
composer global require "squizlabs/php_codesniffer=*"
Make sure you have the composer bin dir in your PATH. The default value is ~/.composer/vendor/bin/
.
Follow this link for more detailed installation instructions.
Once you have PHP_CodeSniffer installed globally, you'll be able to run the phpcs
and the phpcbf
commands from your terminal or bash window.
Now install the WordPress Coding Standards rules by running the following commands:
# Clone WPCS repo.
git clone -b master https://github.com/WordPress-Coding-Standards/WordPress-Coding-Standards.git wpcs
# Set phpcs configuration for wpcs.
phpcs --config-set installed_paths /path/to/wpcs
Now go to VSCode, install phpcs extension and then go to settings.json, and add the following settings. Finally reload.
// Setting for phpcs.
"phpcs.executablePath": "/path/to/.composer/vendor/bin/phpcs",
"phpcs.standard": "WordPress",
Check the available standards phpcs -i