-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathphpcs.xml
More file actions
33 lines (25 loc) · 1.13 KB
/
phpcs.xml
File metadata and controls
33 lines (25 loc) · 1.13 KB
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="8.0-"/>
<!-- https://github.com/PHPCompatibility/PHPCompatibilityWP -->
<!-- Exclude files generated by wordpress/scripts. -->
<exclude-pattern>*.asset.php</exclude-pattern>
<exclude-pattern>*.css.php</exclude-pattern>
<!-- Exclude development files. -->
<exclude-pattern>.github/</exclude-pattern>
<exclude-pattern>node_modules/</exclude-pattern>
<exclude-pattern>vendor/</exclude-pattern>
<rule ref="PHPCompatibilityWP"/>
<rule ref="WordPress-Docs" />
<!-- WordPress should allow short array syntax. -->
<rule ref="Generic.Arrays.DisallowShortArraySyntax">
<exclude name="Generic.Arrays.DisallowShortArraySyntax.Found"/>
</rule>
</ruleset>