forked from wpengine/phpcompat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphpcs.xml
26 lines (21 loc) · 759 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="PHP Compatibility Checker PHPCS Rules">
<description>A custom set of PHPCS rules for PHP Compatibility Checker.</description>
<exclude-pattern>*/tests/*</exclude-pattern>
<exclude-pattern>*/vendor/*</exclude-pattern>
<rule ref="WordPress">
<exclude name="WordPress.Files.FileName"/>
</rule>
<rule ref="WordPress.WP.I18n">
<properties>
<property name="text_domain" type="string" value="php-compatibility-checker"/>
</properties>
</rule>
<rule ref="WordPress.NamingConventions.ValidVariableName">
<properties>
<property name="customPropertiesWhitelist" type="string" value="Name"/>
</properties>
</rule>
<config name="testVersion" value="5.2-99.0"/>
<rule ref="PHPCompatibility"/>
</ruleset>