<?xml version="1.0"?>
<ruleset name="MailMate">
<description>WordPress Coding Standards for MailMate</description>

<!-- Check all PHP files in the plugin -->
<file>.</file>

<!-- Exclude vendor and node_modules -->
<exclude-pattern>*/vendor/*</exclude-pattern>
<exclude-pattern>*/node_modules/*</exclude-pattern>
<exclude-pattern>*/.git/*</exclude-pattern>

<!-- Use WordPress Coding Standards -->
<rule ref="WordPress"/>

<!-- Check for PHP cross-version compatibility -->
<config name="testVersion" value="7.4-"/>

<!-- Only check PHP files -->
<arg name="extensions" value="php"/>

<!-- Show progress and use colors -->
<arg value="sp"/>
<arg name="colors"/>
</ruleset>
