<?xml version="1.0"?>
<ruleset name="LiveChatAI WordPress Plugin Standards">
    <description>PHPCS configuration for the LiveChatAI plugin.</description>

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

    <!-- Set the correct text domain to avoid false positives
         from folder-based slug detection during development. -->
    <rule ref="WordPress.WP.I18n">
        <properties>
            <property name="text_domain" type="array">
                <element value="livechatai"/>
            </property>
        </properties>
    </rule>

    <!-- Exclude vendor and assets from scans if any in future -->
    <exclude-pattern>*/vendor/*</exclude-pattern>
    <exclude-pattern>*/node_modules/*</exclude-pattern>
    <exclude-pattern>*/assets/*</exclude-pattern>
</ruleset>


