-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpcs.xml
31 lines (24 loc) · 988 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
28
29
30
31
<?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. -->
<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 generated build files. -->
<exclude-pattern>/build/</exclude-pattern>
<rule ref="PHPCompatibilityWP"/>
<rule ref="VariableAnalysis" />
<rule ref="WordPress-Extra" />
<rule ref="WordPress-Docs" />
<!-- WordPress should allow short array syntax. -->
<rule ref="Generic.Arrays.DisallowShortArraySyntax">
<exclude name="Generic.Arrays.DisallowShortArraySyntax.Found"/>
</rule>
</ruleset>