-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathphpcs.xml.dist
54 lines (44 loc) · 1.8 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<?xml version="1.0"?>
<ruleset name="WordPress Coding Standards for Plugins">
<description>Generally-applicable sniffs for WordPress plugins</description>
<file>.</file>
<exclude-pattern>/tests/</exclude-pattern>
<exclude-pattern>/vendor/</exclude-pattern>
<arg value="ps"/>
<arg name="basepath" value="./"/>
<arg name="colors"/>
<arg name="extensions" value="php"/>
<arg name="parallel" value="8"/>
<config name="minimum_supported_wp_version" value="5.5"/>
<rule ref="WordPress">
<exclude name="WordPress.PHP.DisallowShortTernary.Found"/>
</rule>
<rule ref="WordPress.NamingConventions.ValidVariableName" >
<properties>
<property name="customPropertiesWhitelist" type="array">
<element value="updateToken"/>
<element value="emailsData"/>
</property>
</properties>
</rule>
<rule ref="Generic.Arrays.DisallowShortArraySyntax.Found">
<exclude-pattern>/src/</exclude-pattern>
<exclude-pattern>clockwork-for-wp.php</exclude-pattern>
</rule>
<rule ref="Squiz.Commenting.ClassComment.Missing">
<exclude-pattern>/src/</exclude-pattern>
<exclude-pattern>clockwork-for-wp.php</exclude-pattern>
</rule>
<rule ref="Squiz.Commenting.FileComment.Missing">
<exclude-pattern>/src/</exclude-pattern>
<exclude-pattern>clockwork-for-wp.php</exclude-pattern>
</rule>
<rule ref="Squiz.Commenting.FunctionComment.Missing">
<exclude-pattern>/src/</exclude-pattern>
<exclude-pattern>clockwork-for-wp.php</exclude-pattern>
</rule>
<rule ref="Squiz.Commenting.VariableComment.Missing">
<exclude-pattern>/src/</exclude-pattern>
<exclude-pattern>clockwork-for-wp.php</exclude-pattern>
</rule>
</ruleset>