30 lines
846 B
XML
30 lines
846 B
XML
<?xml version="1.0"?>
|
|
<ruleset name="StatifyBlacklist">
|
|
<description>Derived from WordPress Coding Standard</description>
|
|
|
|
<arg value="psv"/>
|
|
<arg name="colors"/>
|
|
|
|
<!-- Files to sniff -->
|
|
<file>statify-blacklist.php</file>
|
|
<file>inc</file>
|
|
|
|
<!-- Compliance with WordPress Coding Standard -->
|
|
<config name="minimum_supported_wp_version" value="4.7"/>
|
|
<rule ref="WordPress">
|
|
<!-- Direct queries used to clean up statify table. -->
|
|
<exclude name="WordPress.DB.DirectDatabaseQuery.DirectQuery"/>
|
|
<exclude name="WordPress.DB.DirectDatabaseQuery.NoCaching"/>
|
|
</rule>
|
|
|
|
<rule ref="WordPress.WP.I18n">
|
|
<properties>
|
|
<property name="text_domain" type="array" value="statify-blacklist"/>
|
|
</properties>
|
|
</rule>
|
|
|
|
<!-- PHP compatibility level -->
|
|
<config name="testVersion" value="5.5-"/>
|
|
<rule ref="PHPCompatibilityWP"/>
|
|
</ruleset>
|