2016-08-27 14:18:14 +00:00
|
|
|
<?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 -->
|
|
|
|
|
2017-09-27 16:07:41 +00:00
|
|
|
<description>WooCommerce dev PHP_CodeSniffer ruleset.</description>
|
2016-08-27 14:18:14 +00:00
|
|
|
|
2017-11-09 18:32:04 +00:00
|
|
|
<!-- 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>
|
2017-11-21 12:41:55 +00:00
|
|
|
<exclude-pattern>*/node_modules/*</exclude-pattern>
|
|
|
|
<exclude-pattern>*/vendor/*</exclude-pattern>
|
2017-11-09 18:32:04 +00:00
|
|
|
|
2017-11-21 12:41:55 +00:00
|
|
|
<!-- Configs -->
|
|
|
|
<config name="minimum_supported_wp_version" value="4.5" />
|
|
|
|
<config name="testVersion" value="5.2-"/>
|
|
|
|
|
2017-11-21 12:47:42 +00:00
|
|
|
<!-- Rules -->
|
2017-11-09 18:32:04 +00:00
|
|
|
<rule ref="PHPCompatibility"/>
|
|
|
|
|
2017-10-20 17:24:56 +00:00
|
|
|
<rule ref="WordPress">
|
|
|
|
<exclude name="WordPress.VIP.RestrictedFunctions" />
|
|
|
|
<exclude name="WordPress.VIP.OrderByRand" />
|
|
|
|
</rule>
|
2017-10-09 17:07:09 +00:00
|
|
|
<rule ref="WordPress.VIP.ValidatedSanitizedInput">
|
|
|
|
<properties>
|
2017-11-13 19:30:22 +00:00
|
|
|
<property name="customSanitizingFunctions" type="array" value="wc_clean,wc_sanitize_tooltip,wc_format_decimal,wc_stock_amount" />
|
2017-10-09 17:07:09 +00:00
|
|
|
</properties>
|
|
|
|
</rule>
|
2017-11-13 19:30:22 +00:00
|
|
|
<rule ref="WordPress.XSS.EscapeOutput">
|
|
|
|
<properties>
|
2017-11-13 21:32:40 +00:00
|
|
|
<property name="customEscapingFunctions" type="array" value="wc_help_tip,wc_sanitize_tooltip" />
|
2017-11-13 19:30:22 +00:00
|
|
|
</properties>
|
2017-11-21 12:41:55 +00:00
|
|
|
</rule>
|
|
|
|
<rule ref="WordPress.WP.I18n">
|
|
|
|
<properties>
|
|
|
|
<property name="text_domain" type="array" value="woocommerce" />
|
|
|
|
</properties>
|
|
|
|
</rule>
|
2016-08-27 14:18:14 +00:00
|
|
|
</ruleset>
|