<?xml version="1.0"?>
<ruleset name="Lemon Squeezy WP">
    <description>Wordpress Coding Standards</description>

    <!-- Scan all files in directory -->
    <file>.</file>
    <exclude-pattern>*/node_modules/*</exclude-pattern>
    <exclude-pattern>*/vendor/*</exclude-pattern>

    <!-- Scan only PHP files -->
    <arg name="extensions" value="php"/>

    <!-- Show colors in console -->
    <arg value="-colors"/>

    <!-- Show sniff codes in all reports -->
    <arg value="ns"/>

    <!-- Include the WordPress-Extra standard. -->
    <rule ref="WordPress-Extra"/>

    <config name="minimum_supported_wp_version" value="5.0"/>
</ruleset>
