-
Notifications
You must be signed in to change notification settings - Fork 1
/
phpcs.xml
44 lines (34 loc) · 1.44 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
<?xml version="1.0"?>
<ruleset name="Wonderful">
<description>Wonderpress Coding Standards</description>
<!-- Scan all files in directory -->
<file>.</file>
<!-- Check up to 8 files simultaneously. -->
<arg name="parallel" value="8" />
<!-- Scan only PHP files -->
<arg name="extensions" value="php"/>
<!-- Exclude files -->
<exclude-pattern>*/woocommerce/*</exclude-pattern>
<exclude-pattern>*/wp-content/themes/index.php</exclude-pattern>
<exclude-pattern>*/vendor/*</exclude-pattern>
<!-- Show colors in console -->
<arg value="-colors"/>
<!-- Show sniff codes in all reports -->
<arg value="ns"/>
<!-- Include the WordPress standard. -->
<rule ref="WordPress">
<!-- Exclude any rules here -->
<exclude name="Squiz.Commenting.FileComment.SpacingAfterOpen"/>
<exclude name="Squiz.Commenting.InlineComment.InvalidEndChar"/>
<exclude name="WordPress.VIP.AdminBarRemoval.RemovalDetected"/>
</rule>
<!-- Add in some extra rules from other standards. -->
<rule ref="Generic.CodeAnalysis.UnusedFunctionParameter"/>
<rule ref="Generic.Commenting.Todo"/>
<config name="minimum_supported_wp_version" value="4.9"/>
<!--
Prevent errors caused by WordPress Coding Standards not supporting PHP 8.0+.
See https://github.com/WordPress/WordPress-Coding-Standards/issues/2035
-->
<ini name="error_reporting" value="E_ALL & ~E_DEPRECATED" />
</ruleset>