<?xml version="1.0"?>
<ruleset name="WordPress Coding Standards">
    <description>Apply WordPress Coding Standards to all Core files</description>

	<!-- Whenever possible, cache the scan results and re-use those for unchanged files on the next scan. -->
	<arg name="cache" value=".cache/phpcompat.json"/>

	<!-- Set the memory limit to 256M.
		 For most standard PHP configurations, this means the memory limit will temporarily be raised.
		 Ref: https://github.com/squizlabs/PHP_CodeSniffer/wiki/Advanced-Usage#specifying-phpini-settings
	-->
	<ini name="memory_limit" value="256M"/>

	<!-- Strip the filepaths in reports down to the relevant bit. -->
	<arg name="basepath" value="./" />

	<!-- Check up to 8 files simultaneously. -->
	<arg name="parallel" value="8" />

	<!-- Show progress, show the error codes for each message (source). -->
	<arg value="ps" />

	<!-- Exclude Warnings. -->
	<arg value="n" />

	<file>.</file>

	<!-- Configs -->
	<config name="minimum_supported_wp_version" value="4.6" />
	<config name="testVersion" value="7.0-" />
	<arg name="extensions" value="php"/>
	<arg name="tab-width" value="4"/>


	<!-- Exclude paths -->
	<exclude-pattern>/__*/</exclude-pattern>
	<exclude-pattern>/.github</exclude-pattern>
	<exclude-pattern>/node_modules/*</exclude-pattern>
	<exclude-pattern>/assets/*</exclude-pattern>
	<exclude-pattern>/languages/*</exclude-pattern>
	<exclude-pattern>/src/*</exclude-pattern>
	<exclude-pattern>/vendor/*</exclude-pattern>

	<!-- Rules -->
	<rule ref="WordPress.Security"/>

    <rule ref="WordPress.Security.ValidatedSanitizedInput">
        <properties>
            <property name="customSanitizingFunctions" type="array">
				<element value="helpgent_clean"/>
            </property>
        </properties>
    </rule>

	<rule ref="WordPress.WP.I18n">
		<properties>
			<property name="text_domain" type="array" value="helpgent" />
		</properties>
	</rule>

</ruleset>