-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphpcs.xml
53 lines (40 loc) · 1.23 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
<?xml version="1.0"?>
<ruleset name="PHPCS">
<description>PHPCS ruleset</description>
<!-- Check files in this directory and subdirectories. -->
<file>.</file>
<!-- Prevent sniffs of some directories. -->
<exclude-pattern>/vendor/</exclude-pattern>
<!-- Pass flags to PHPCS:
p: Show progress of the run.
s: Show sniff codes in all reports.
v: Print verbose output.
-->
<arg value="psv"/>
<!-- Define default report type -->
<arg name="report" value="summary"/>
<!-- Enable colors in report -->
<arg name="colors"/>
<!-- Only check PHP files -->
<arg name="extensions" value="php"/>
<!-- Use modified WordPress ruleset -->
<rule ref="WordPress">
<exclude name="Squiz.Commenting.InlineComment"/>
<exclude name="Squiz.PHP.CommentedOutCode.Found"/>
</rule>
<rule ref="WordPress.WP.DeprecatedFunctions">
<properties>
<property name="minimum_supported_version" value="5.3"/>
</properties>
</rule>
<rule ref="WordPress.NamingConventions.PrefixAllGlobals">
<properties>
<property name="prefixes" type="array" value="CODECONUT, CCN, DRAWFULMIND, DFM"/>
</properties>
</rule>
<rule ref="WordPress.Files.FileName">
<properties>
<property name="is_theme" value="true"/>
</properties>
</rule>
</ruleset>