-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpcs.xml
45 lines (39 loc) · 1.35 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
34
35
36
37
38
39
40
41
42
43
44
45
<?xml version="1.0"?>
<ruleset name="Post Popup">
<description>Check WordPress coding standards</description>
<file>.</file>
<exclude-pattern>./node_modules/*</exclude-pattern>
<exclude-pattern>./*.js</exclude-pattern>
<exclude-pattern>./*.css</exclude-pattern>
<exclude-pattern>./vendor/*</exclude-pattern>
<arg value="sp"/>
<arg name="basepath" value="./"/>
<arg name="colors"/>
<arg name="extensions" value="php"/>
<arg name="parallel" value="8"/>
<rule ref="WordPress">
<exclude name="WordPress.Files.FileName.InvalidClassFileName"/>
<exclude name="WordPress.Files.FileName.NotHyphenatedLowercase"/>
</rule>
<rule ref="WordPress-Extra"/>
<rule ref="WordPress-Docs"/>
<rule ref="Generic.CodeAnalysis.UnusedFunctionParameter"/>
<rule ref="Generic.Commenting.Todo"/>
<config name="minimum_supported_wp_version" value="5.2"/>
<rule ref="WordPress.WP.I18n">
<properties>
<property name="text_domain" type="array" value="post-popup"/>
</properties>
</rule>
<rule ref="WordPress.WhiteSpace.ControlStructureSpacing">
<properties>
<property name="blank_line_check" value="true"/>
</properties>
<exclude name="WordPress.WhiteSpace.ControlStructureSpacing.BlankLineAfterStart"/>
</rule>
<rule ref="WordPress.Arrays.MultipleStatementAlignment">
<properties>
<property name="maxColumn" value="120"/>
</properties>
</rule>
</ruleset>