-
-
Notifications
You must be signed in to change notification settings - Fork 18
/
phpcs.xml
23 lines (23 loc) · 921 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
<?xml version="1.0"?>
<ruleset name="WordPress IndieWeb">
<description>WordPress IndieWeb Standards</description>
<file>./indieweb.php</file>
<file>./includes/</file>
<config name="minimum_supported_wp_version" value="4.8"/>
<exclude-pattern>*/includes/*\.(inc|css|js|svg)</exclude-pattern>
<exclude-pattern>*/includes/getting-started.php</exclude-pattern>
<exclude-pattern>*/includes/class-connekt-plugin-installer.php</exclude-pattern>
<exclude-pattern>*/vendor/*</exclude-pattern>
<rule ref="PHPCompatibility"/>
<config name="testVersion" value="7.2-"/>
<rule ref="WordPress-Core" />
<rule ref="WordPress.Files.FileName">
<properties>
<property name="strict_class_file_names" value="false" />
</properties>
</rule>
<rule ref="WordPress.WP.DeprecatedFunctions" />
<rule ref="WordPress-Extra" />
<rule ref="WordPress.WP.I18n"/>
<config name="text_domain" value="indieweb,default"/>
</ruleset>