<ruleset name="WordPress Coding Standards">
<!-- Set a description for this ruleset. -->
<description>A custom set of code standard rules to check for Nginx helper plugin.</description>
<!-- Pass some flags to PHPCS:
p flag: Show progress of the run.
s flag: Show sniff codes in all reports.
<!-- Check up to 8 files simultanously. -->
<arg name="parallel" value="8"/>
<!-- Check PHP and JS files. -->
<arg name="extensions" value="php,js"/>
<!-- Check all files in this directory and the directories below it. -->
<!-- Exclude folders. -->
<exclude-pattern>*/languages/*</exclude-pattern>
<exclude-pattern>*/admin/predis.php</exclude-pattern> <!-- Predis library file -->
<exclude-pattern>*/vendor/*</exclude-pattern> <!-- Composer vendor directory -->
<!-- Include the WordPress standard. -->
<exclude name="PEAR.NamingConventions.ValidClassName.Invalid" />
<exclude name="PSR2.Methods.MethodDeclaration.Underscore" />
<rule ref="WordPress-VIP-Go">
<exclude name="WordPress.VIP.FileSystemWritesDisallow.directory_mkdir" />
<exclude name="WordPress.WP.AlternativeFunctions.file_system_read_fopen" />
<exclude name="WordPress.VIP.FileSystemWritesDisallow.file_ops_is_writable" />
<exclude name="WordPress.WP.AlternativeFunctions.file_system_read_fclose" />
<exclude name="WordPress.VIP.FileSystemWritesDisallow.file_ops_fwrite" />
<exclude name="WordPress.VIP.FileSystemWritesDisallow.directory_rmdir" />
<exclude name="WordPress.WP.AlternativeFunctions.file_system_read_fwrite" />
<exclude name="WordPress.VIP.FileSystemWritesDisallow.file_ops_unlink" />
<exclude name="WordPressVIPMinimum.Functions.RestrictedFunctions.directory_mkdir" />
<exclude name="WordPressVIPMinimum.Functions.RestrictedFunctions.directory_rmdir" />
<!-- Verify that the text_domain is set to the desired text-domain.
Multiple valid text domains can be provided as a comma-delimited list. -->
<rule ref="WordPress.WP.I18n">
<property name="text_domain" type="array" value="nginx-helper" />
<!-- Verify that no WP functions are used which are deprecated or have been removed.
The minimum version set here should be in line with the minimum WP version
as set in the "Requires at least" tag in the readme.txt file. -->
<rule ref="WordPress.WP.DeprecatedFunctions">
<property name="minimum_supported_version" value="3.0" />
<!-- Include sniffs for PHP cross-version compatibility. -->
<rule ref="PHPCompatibility"/>
<config name="testVersion" value="5.3-99.0"/>