-
-
Notifications
You must be signed in to change notification settings - Fork 20
/
phpcs.xml
33 lines (28 loc) · 982 Bytes
/
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
<?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>inc</file>
<file>snitch.php</file>
<exclude-pattern>vendor/*</exclude-pattern>
<!-- WordPress coding standards -->
<config name="minimum_supported_wp_version" value="3.8" />
<rule ref="WordPress" />
<rule ref="WordPress.WP.I18n">
<properties>
<property name="text_domain" type="array" value="snitch" />
</properties>
</rule>
<!-- Include sniffs for PHP cross-version compatibility. -->
<config name="testVersion" value="5.2-"/>
<rule ref="PHPCompatibilityWP"/>
</ruleset>