EventEspresso Coding Standards (EventEspressoCS) is a project with rulesets for code style and quality tools to be used in Event Espresso php projects.
Standards are provided as Composer package and can be installed with:
composer create-project eventespresso/ee-coding-standards:dev-master
Composer will automatically install dependencies, register standards paths, and set default PHP Code Sniffer standard to EventEspresso
.
To include standards as part of a project require them as development dependencies:
composer require eventespresso/ee-coding-standards:dev-master --dev
Note that Composer won't run configuration scripts in this scenario and the root project needs to take care of it.
Set of PHP Code Sniffer rules. Our standards follow PSR-2
Severity levels:
- error level issues are considered mandatory to fix in Yoast projects and enforced in continuous integration
- warning level issues are considered recommended to fix
"vendor/bin/phpcs" --extensions=php /path/to/folder/
Refer to Using PHP Code Sniffer Tool in PhpStorm documentation.
After installation EventEspresso
standard will be available as a choice in PHP Code Sniffer Validation inspection.