31 lines
1.1 KiB
XML
31 lines
1.1 KiB
XML
<?xml version="1.0"?>
|
|
<ruleset name="WordPress Coding Standards">
|
|
<!-- See https://github.com/squizlabs/PHP_CodeSniffer/wiki/Annotated-ruleset.xml -->
|
|
<!-- See https://github.com/WordPress-Coding-Standards/WordPress-Coding-Standards/blob/develop/WordPress-Core/ruleset.xml -->
|
|
|
|
<description>WooCommerce dev PHP_CodeSniffer ruleset.</description>
|
|
|
|
<!-- Include WPCS and PHPCompatibility paths -->
|
|
<config name="installed_paths" value="vendor/wp-coding-standards/wpcs,vendor/wimg/php-compatibility" />
|
|
|
|
<!-- Exclude paths -->
|
|
<exclude-pattern>tests/cli/</exclude-pattern>
|
|
<exclude-pattern>apigen/</exclude-pattern>
|
|
<exclude-pattern>includes/gateways/simplify-commerce/includes/</exclude-pattern>
|
|
<exclude-pattern>includes/libraries/</exclude-pattern>
|
|
<exclude-pattern>includes/api/legacy/</exclude-pattern>
|
|
|
|
<rule ref="PHPCompatibility"/>
|
|
|
|
<rule ref="WordPress">
|
|
<exclude name="WordPress.VIP.RestrictedFunctions" />
|
|
<exclude name="WordPress.VIP.OrderByRand" />
|
|
</rule>
|
|
|
|
<rule ref="WordPress.VIP.ValidatedSanitizedInput">
|
|
<properties>
|
|
<property name="customSanitizingFunctions" type="array" value="wc_clean" />
|
|
</properties>
|
|
</rule>
|
|
</ruleset>
|