-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
phpcs.xml.dist
66 lines (51 loc) · 1.83 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
65
66
<?xml version="1.0"?>
<ruleset name="WordPress Coding Standards">
<description>A custom set of PHPCS rules for the plugin.</description>
<!-- Files to check. -->
<file>.</file>
<!-- Exclude paths. -->
<exclude-pattern>*/node_modules/*</exclude-pattern>
<exclude-pattern>*/vendor/*</exclude-pattern>
<exclude-pattern>*/tests/*</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.Files.FileName"/>
-->
</rule>
<config name="minimum_supported_wp_version" value="5.1"/>
<!--
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="gp-format-csv"/>
</properties>
</rule>
<rule ref="WordPress.NamingConventions.PrefixAllGlobals">
<properties>
<!-- Set the global prefix. -->
<property name="prefixes" type="array" value="gp_format_csv"/>
</properties>
</rule>
<!-- VariableAnalysis. -->
<rule ref="VariableAnalysis"/>
</ruleset>