-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathphpcs.xml
73 lines (57 loc) · 2.11 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
<?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>*/node_modules/*</exclude-pattern>
<exclude-pattern>*/vendor/*</exclude-pattern>
<exclude-pattern>*/tests/*</exclude-pattern>
<!-- A comma separated list of file extensions to check. -->
<arg name="extensions" value="php,css"/>
<!-- The report types to print. -->
<arg name="report" value="summary,source,full"/>
<!-- Show sniff codes in all reports. -->
<arg value="s"/>
<!-- Show progress of the run. -->
<arg value="p"/>
<!-- Enable colors in report -->
<arg name="colors"/>
<!-- Include the PHPCompatibilityWP. -->
<rule ref="PHPCompatibilityWP"/>
<!-- Test for PHP 5.6+ compatibility. -->
<config name="testVersion" value="5.6-"/>
<!-- Include the WordPress Coding Standards. -->
<rule ref="WordPress">
<!--
<exclude name="WordPress.Files.FileName"/>
-->
</rule>
<rule ref="WordPress.WP.DeprecatedFunctions">
<properties>
<property name="minimum_supported_version" value="4.9"/>
</properties>
</rule>
<!-- Throws errors if spaces are used for indentation other than precision indentation. -->
<rule ref="Generic.WhiteSpace.DisallowSpaceIndent"/>
<!-- Excludes errors if spaces are used for indentation other than precision indentation. -->
<exclude name="Generic.WhiteSpace.DisallowSpaceIndent"/>
<!--
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="string" value="translation-stats"/>
</properties>
</rule>
<rule ref="WordPress.NamingConventions.PrefixAllGlobals">
<properties>
<!-- Set the global prefix. -->
<property name="prefixes" type="array" value="tstats"/>
</properties>
</rule>
</ruleset>