<?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 -->

	<!-- Set a description for this ruleset. -->
	<description>A custom set of code standard rules to check for WordPress themes and plugins.</description>

	<!-- Include the WordPress ruleset, with exclusions. -->
	<rule ref="WordPress-Core">
	</rule>
	<exclude-pattern>*/node_modules/*</exclude-pattern>
	<exclude-pattern>*/woocommerce/*</exclude-pattern>
	<!-- Include sniffs for PHP cross-version compatibility. -->
	<rule ref="PHPCompatibility"/>
</ruleset>
