-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpcs.xml
38 lines (33 loc) · 1.2 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
<?xml version="1.0"?>
<ruleset name="Coding standard">
<description>Coding standard for WordPress plugins</description>
<!-- Pass some flags to PHPCS:
p flag: Show progress of the run.
s flag: Show sniff codes in all reports.
v flag: Print verbose output.
n flag: Do not print warnings.
-->
<arg value="psvn"/>
<!-- use colors in output -->
<arg name="colors"/>
<!-- ignore vendor files-->
<file>views</file>
<file>posts-and-users-stats.php</file>
<exclude-pattern>vendor/*</exclude-pattern>
<!-- WordPress coding standards -->
<config name="minimum_supported_wp_version" value="4.7" />
<rule ref="WordPress">
<exclude name="Universal.Arrays.DisallowShortArraySyntax.Found" />
</rule>
<rule ref="WordPress.WP.I18n">
<properties>
<property name="text_domain" type="array" value="posts-and-users-stats" />
</properties>
</rule>
<rule ref="WordPress.WP.GlobalVariablesOverride.Prohibited">
<exclude-pattern>posts.php</exclude-pattern>
</rule>
<!-- Include sniffs for PHP cross-version compatibility. -->
<config name="testVersion" value="5.6-"/>
<rule ref="PHPCompatibility"/>
</ruleset>