-
Notifications
You must be signed in to change notification settings - Fork 1
/
phpcs.xml
27 lines (22 loc) · 877 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
<?xml version="1.0"?>
<ruleset name="WooCommerce Coding Standards">
<description>Generally-applicable sniffs for WooCommerce plugins</description>
<!-- Configs -->
<config name="minimum_supported_wp_version" value="4.7"/>
<config name="testVersion" value="5.6-"/>
<!-- Rules -->
<rule ref="WordPress">
<exclude name="WordPress.Files.FileName.NotHyphenatedLowercase"/>
<exclude name="WordPress.Files.FileName.InvalidClassFileName"/>
</rule>
<rule ref="WooCommerce-Core"/>
<rule ref="PHPCompatibility"/>
<!-- Args -->
<arg name="extensions" value="php"/>
<arg value="s"/>
<!-- Excludes -->
<exclude-pattern>*/dev-lib/*</exclude-pattern>
<exclude-pattern>*/node_modules/*</exclude-pattern>
<exclude-pattern>*/vendor/*</exclude-pattern>
<exclude-pattern>.github/</exclude-pattern>
</ruleset>