-
-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathphpcs.xml
More file actions
24 lines (20 loc) · 750 Bytes
/
phpcs.xml
File metadata and controls
24 lines (20 loc) · 750 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?xml version="1.0"?>
<ruleset name="WordPress IndieWeb">
<description>WordPress IndieWeb Coding Standards</description>
<file>.</file>
<exclude-pattern>\.git</exclude-pattern>
<exclude-pattern>\.github</exclude-pattern>
<exclude-pattern>*\.(css|js|svg)</exclude-pattern>
<exclude-pattern>*/vendor/*</exclude-pattern>
<exclude-pattern>*/node_modules/*</exclude-pattern>
<arg value="ps"/>
<arg name="basepath" value="."/>
<arg name="colors"/>
<arg name="parallel" value="50"/>
<config name="testVersion" value="7.4-"/>
<config name="minimum_supported_wp_version" value="6.2"/>
<config name="text_domain" value="indieweb,default"/>
<rule ref="PHPCompatibilityWP"/>
<rule ref="WordPress"/>
<rule ref="VariableAnalysis"/>
</ruleset>