-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
phpcs.xml.dist
64 lines (49 loc) · 1.84 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
55
56
57
58
59
60
61
62
63
64
<?xml version="1.0"?>
<ruleset name="Translation Stats">
<description>A custom set of PHPCS rules for plugin Translation Stats.</description>
<!-- Files to check. -->
<file>.</file>
<!-- Exclude paths. -->
<exclude-pattern>*/lib/*</exclude-pattern>
<exclude-pattern>*/node_modules/*</exclude-pattern>
<exclude-pattern>*/vendor/*</exclude-pattern>
<!-- Only scan PHP files. -->
<arg name="extensions" value="php"/>
<!-- The report types to print. -->
<arg name="report" value="summary,source,full"/>
<!-- Show sniff and progress. -->
<arg value="sp"/>
<!-- Strip the file paths down to the relevant bit. -->
<arg name="basepath" value="./"/>
<!-- Check up to 20 files simultaneously. -->
<arg name="parallel" value="20"/>
<!-- Whenever possible, cache the scan results and re-use those for unchanged files on the next scan. -->
<arg name="cache"/>
<!-- Enable colors in report. -->
<arg name="colors"/>
<!-- Include the WordPress Coding Standards. -->
<rule ref="WordPress">
<exclude name="WordPress.PHP.YodaConditions.NotYoda"/>
</rule>
<config name="minimum_supported_wp_version" value="4.9"/>
<!--
To get the optimal benefits of using WPCS, we should add a couple of custom properties.
For information on additional custom properties available, check out
the wiki:
https://github.com/WordPress-Coding-Standards/WordPress-Coding-Standards/wiki/Customizable-sniff-properties
-->
<rule ref="WordPress.WP.I18n">
<properties>
<!-- Set the Text Domain. -->
<property name="text_domain" type="array" value="translation-stats"/>
</properties>
</rule>
<rule ref="WordPress.NamingConventions.PrefixAllGlobals">
<properties>
<!-- Set the global prefix. -->
<property name="prefixes" type="array" value="translation_stats"/>
</properties>
</rule>
<!-- VariableAnalysis. -->
<rule ref="VariableAnalysis"/>
</ruleset>