This repository has been archived by the owner on Jun 4, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
phpcs.xml
79 lines (64 loc) · 2.39 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
77
78
79
<?xml version="1.0"?>
<ruleset name="Mercury">
<description>PHP_CodeSniffer standard for Mercury.</description>
<!--
Pass some flags to PHPCS:
p flag: Show progress of the run.
s flag: Show sniff codes in all reports.
n flag: Do not print warnings.
-->
<arg value="psn" />
<!-- Strip the filepaths down to the relevant bit. -->
<arg name="basepath" value="./" />
<arg name="parallel" value="1" />
<!-- Only check the PHP files. -->
<arg name="extensions" value="php" />
<!-- Check all files in this directory and the directories below it. -->
<file>.</file>
<!-- Exclude a few directories and autogenerated files. -->
<exclude-pattern>*/node_modules/*</exclude-pattern>
<exclude-pattern>*/vendor/</exclude-pattern>
<exclude-pattern>tests/</exclude-pattern>
<rule ref="WordPress" />
<!-- The version set here matches the minimum version tested in .travis.yml. -->
<config name="minimum_supported_wp_version" value="4.9" />
<rule ref="Generic.Files.OneObjectStructurePerFile">
<!--
Increase severity. If it becomes a problem for this sniff to trigger an
error, then we might want to provide feedback to the WPCS maintainers.
See https://github.com/WordPress-Coding-Standards/WordPress-Coding-Standards/pull/1111.
-->
<type>error</type>
</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="mercury" />
</properties>
</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>