<?xml version="1.0"?>
<ruleset name="Wow Extensions for WooCommerce">
	<description>PHPCS configuration for Wow Extensions for WooCommerce plugin.</description>

	<!-- Scan all PHP files in this directory -->
	<file>.</file>

	<!-- Exclude third-party/vendor assets -->
	<exclude-pattern>/assets/vendor/*</exclude-pattern>
	<exclude-pattern>/node_modules/*</exclude-pattern>

	<!-- Use the WordPress Coding Standards -->
	<rule ref="WordPress"/>

	<!-- Declare valid prefixes for PrefixAllGlobals sniff. -->
	<rule ref="WordPress.NamingConventions.PrefixAllGlobals">
		<properties>
			<property name="prefixes" type="array">
				<element value="wowexfow"/>
				<element value="Wowexfow"/>
				<element value="WOWEXFOW"/>
			</property>
		</properties>
	</rule>
</ruleset>
