forked from dshanske/parse-this
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphpcs.xml
26 lines (23 loc) · 831 Bytes
/
phpcs.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<?xml version="1.0"?>
<ruleset name="Parse-This">
<description>Parse This Standards</description>
<file>./parse-this.php</file>
<file>./includes</file>
<exclude-pattern>*/includes/Parser.php</exclude-pattern>
<exclude-pattern>*/includes/simplepie/*</exclude-pattern>
<rule ref="PHPCompatibility"/>
<config name="testVersion" value="5.3-"/>
<rule ref="PHPCompatibilityWP"/>
<config name="minimum_supported_wp_version" value="4.7"/>
<rule ref="WordPress.WP.DeprecatedFunctions" />
<rule ref="WordPress-Core">
<exclude name="WordPress.Security.ValidatedSanitizedInput" />
<exclude name="WordPress.Security.NonceVerification" />
</rule>
<rule ref="WordPress.Files.FileName">
<properties>
<property name="strict_class_file_names" value="false" />
</properties>
</rule>
<rule ref="WordPress-Extra" />
</ruleset>