-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpcs.xml.dist
32 lines (26 loc) · 924 Bytes
/
phpcs.xml.dist
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
27
28
29
30
31
32
<?xml version="1.0"?>
<ruleset name="WordPress Coding Standards for Gravatar Plugin">
<description>
Sniffs for WordPress plugins, with minor modifications for Gravatar Plugin
</description>
<config name="testVersion" value="5.6-" />
<rule ref="PHPCompatibilityWP">
<include-pattern>./php$</include-pattern>
</rule>
<rule ref="WordPress-Core" />
<rule ref="WordPress-Docs" />
<rule ref="WordPress.WP.I18n" />
<config name="text_domain" value="santosguillamot,default" />
<rule ref="PEAR.Functions.FunctionCallSignature">
<properties>
<property name="allowMultipleArguments" value="false" />
</properties>
</rule>
<arg value="ps" />
<arg name="extensions" value="php" />
<file>./index.php</file>
<file>./src</file>
<exclude-pattern>./build</exclude-pattern>
<exclude-pattern>./vendor</exclude-pattern>
<exclude-pattern>./node_modules</exclude-pattern>
</ruleset>