-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpcs.xml
33 lines (25 loc) · 1.08 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
<?xml version="1.0"?>
<ruleset>
<!-- Check all PHP files in directory tree by default. -->
<arg name="extensions" value="php"/>
<file>.</file>
<!-- Show progress and sniff codes in all reports -->
<arg value="ps"/>
<!-- Rules: Check PHP version compatibility -->
<!-- https://github.com/PHPCompatibility/PHPCompatibility#sniffing-your-code-for-compatibility-with-specific-php-versions -->
<config name="testVersion" value="7.4-"/>
<!-- https://github.com/PHPCompatibility/PHPCompatibilityWP -->
<rule ref="PHPCompatibilityWP"/>
<!-- Ignore 3rd party libraries loaded by NPM -->
<exclude-pattern>*/node_modules/*</exclude-pattern>
<!-- Ignore 3rd party libraries loaded by Composer -->
<exclude-pattern>*/vendor/*</exclude-pattern>
<!-- Ignore asset files generated by @wordpress/scripts -->
<exclude-pattern>*.asset.php</exclude-pattern>
<rule ref="WordPress-Extra">
<exclude name="WordPress.Files.FileName.InvalidClassFileName"/>
<exclude name="WordPress.Files.FileName.NotHyphenatedLowercase"/>
</rule>
<rule ref="VariableAnalysis" />
<rule ref="WordPress-Docs" />
</ruleset>