This repository has been archived by the owner on May 1, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathphpcs.xml
76 lines (62 loc) · 2.33 KB
/
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
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<?xml version="1.0"?>
<ruleset name="WP Irving">
<description>PHP_CodeSniffer standard for WP Irving.</description>
<!-- Attempt to read from a cache -->
<arg name="cache" value=".cache/phpcs-cache.json"/>
<!-- Check up to 20 files simultaneously -->
<arg name="parallel" value="20"/>
<!-- Set the memory limit to 256M.
For most standard PHP configurations, this means the memory limit will temporarily be raised.
Ref: https://github.com/squizlabs/PHP_CodeSniffer/wiki/Advanced-Usage#specifying-phpini-settings
-->
<ini name="memory_limit" value="256M"/>
<!-- Include Alley Rules -->
<rule ref="Alley-Interactive" />
<!-- Project customizations go here -->
<rule ref="WordPress">
<!-- Allow short ternary expressions -->
<exclude name="WordPress.PHP.DisallowShortTernary" />
</rule>
<rule ref="WordPress.WP.I18n">
<properties>
<!--
Verify that the text_domain is set to the desired text-domain.
Multiple valid text domains can be provided as a comma-delimited list.
-->
<property name="text_domain" type="array" value="wp-irving" />
</properties>
</rule>
<rule ref="WordPress.Files.FileName.InvalidClassFileName">
<exclude-pattern>/tests/*</exclude-pattern>
</rule>
<rule ref="WordPress.NamingConventions.PrefixAllGlobals">
<properties>
<property name="prefixes" type="array">
<element value="WP_Irving"/>
</property>
</properties>
<exclude-pattern>/tests/bootstrap\.php</exclude-pattern>
</rule>
<rule ref="Generic.PHP.ForbiddenFunctions">
<properties>
<!--
WordPress.com VIP does not propagate wp_cache_set data across datacenters,
largely to avoid attempting to propagate large (>50k) data for batcache.
-->
<property name="forbiddenFunctions" type="array" value="wp_cache_add=>wp_cache_set" />
<!-- This is the newer format, only supported in PHPCS 3.3.0+
<property name="forbiddenFunctions" type="array">
<element key="wp_cache_add" value="wp_cache_set"/>
</property> -->
</properties>
</rule>
<rule ref="PEAR.Functions.FunctionCallSignature.ContentAfterOpenBracket">
<type>warning</type>
</rule>
<rule ref="PEAR.Functions.FunctionCallSignature.MultipleArguments">
<type>warning</type>
</rule>
<rule ref="PEAR.Functions.FunctionCallSignature.CloseBracketLine">
<type>warning</type>
</rule>
</ruleset>