This is a tool to lint and format source files in Node.js using PHP Code Sniffer and WordPress Code Standards. It bundles a PHP runtime compiled to WebAssembly, so it doesn't depend on PHP being installed on the local system.
It can be installed as a global command.
npm install --global @tangible/php-beautify
Or install it as a dependency of an existing project.
npm install --save @tangible/php-beautify
In this case, use NPM script or npx php-beautify
to run the commands described below.
{
"scripts" {
"lint": "php-beautify lint src/**/*.php",
"format": "php-beautify format src/**/*.php"
}
}
Help screen
php-beautify
Lint
php-beautify lint [...files]
Format
php-beautify format [...files]
-
curl -LO https://github.com/PHPCSStandards/PHP_CodeSniffer/releases/download/3.11.3/phpcbf.phar curl -LO https://github.com/PHPCSStandards/PHP_CodeSniffer/releases/download/3.11.3/phpcs.phar
-
curl -L https://github.com/WordPress/WordPress-Coding-Standards/archive/refs/tags/3.1.0.tar.gz | tar zx mkdir -p wpcs for folder in WordPress WordPress-Core WordPress-Docs WordPress-Extra; do echo "Copying $folder"; rsync -r WordPress-Coding-Standards-*/"$folder"/ wpcs/"$folder"; done rm -rf WordPress-Coding-Standards-*
-
Dependencies
curl -L https://github.com/PHPCSStandards/PHPCSUtils/archive/refs/tags/1.0.12.tar.gz | tar zx rsync -vr PHPCSUtils-*/PHPCSUtils/ wpcs/PHPCSUtils rm -rf PHPCSUtils-*
curl -L https://github.com/PHPCSStandards/PHPCSExtra/archive/refs/tags/1.2.1.tar.gz | tar zx for folder in Modernize NormalizedArrays Universal; do echo "Copying $folder"; rsync -r PHPCSExtra-*/"$folder"/ wpcs/"$folder"; done rm -rf PHPCSExtra-*