-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpcs.xml
More file actions
31 lines (25 loc) · 878 Bytes
/
Copy pathphpcs.xml
File metadata and controls
31 lines (25 loc) · 878 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
25
26
27
28
29
30
31
<?xml version="1.0"?>
<ruleset name="Ixian Theme">
<description>Coding standards for the Ixian theme</description>
<!-- Use WordPress standards -->
<rule ref="WordPress" />
<!-- Check PHP files only -->
<arg name="extensions" value="php"/>
<!-- Show progress and use colors -->
<arg value="ps"/>
<arg name="colors"/>
<!-- Exclusions -->
<exclude-pattern>*/vendor/*</exclude-pattern>
<exclude-pattern>*/node_modules/*</exclude-pattern>
<!-- Minimum PHP version -->
<config name="minimum_supported_wp_version" value="6.6"/>
<config name="testVersion" value="8.0-"/>
<!-- Text domain check -->
<rule ref="WordPress.WP.I18n">
<properties>
<property name="text_domain" type="array">
<element value="ixian"/>
</property>
</properties>
</rule>
</ruleset>