-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.phpcs.xml
33 lines (25 loc) · 1.12 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 name="WordPress coding standards for Happy Prime plugins">
<!-- 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-"/>
<!-- 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="PHPCompatibilityWP"/>
<rule ref="VariableAnalysis" />
<rule ref="WordPress-Extra" />
<rule ref="WordPress-Docs" />
<!-- WordPress should allow short array syntax. -->
<rule ref="Universal.Arrays.DisallowShortArraySyntax">
<exclude name="Universal.Arrays.DisallowShortArraySyntax.Found"/>
</rule>
</ruleset>