-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathphpcs.xml.dist
More file actions
43 lines (36 loc) · 1.38 KB
/
Copy pathphpcs.xml.dist
File metadata and controls
43 lines (36 loc) · 1.38 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
34
35
36
37
38
39
40
41
42
43
<?xml version="1.0"?>
<ruleset name="Online Active Users">
<description>WordPress Coding Standards for Online Active Users</description>
<file>.</file>
<exclude-pattern>/vendor/*</exclude-pattern>
<exclude-pattern>/tests/*</exclude-pattern>
<exclude-pattern>/languages/*</exclude-pattern>
<exclude-pattern>/.wordpress-org/*</exclude-pattern>
<arg value="sp"/>
<arg name="basepath" value="."/>
<arg name="colors"/>
<arg name="extensions" value="php"/>
<config name="minimum_supported_wp_version" value="6.3"/>
<config name="testVersion" value="7.3-"/>
<rule ref="WordPress-Extra"/>
<rule ref="WordPress-Docs"/>
<rule ref="PHPCompatibilityWP"/>
<rule ref="WordPress.WP.I18n">
<properties>
<property name="text_domain" type="array">
<element value="online-active-users"/>
</property>
</properties>
</rule>
<rule ref="WordPress.NamingConventions.PrefixAllGlobals">
<properties>
<property name="prefixes" type="array">
<element value="WPOAU"/>
<element value="wpoau"/>
<element value="Webi"/>
<element value="webi"/>
</property>
</properties>
</rule>
<!-- Main plugin bootstrap file must keep the plugin-slug filename; see inline phpcs:ignoreFile there. -->
</ruleset>