-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpcs.xml
More file actions
53 lines (45 loc) · 1.55 KB
/
phpcs.xml
File metadata and controls
53 lines (45 loc) · 1.55 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
44
45
46
47
48
49
50
51
52
53
<?xml version="1.0"?>
<ruleset name="Training Meeting Tracker">
<description>WordPress Coding Standards for the Training Meeting Tracker plugin.</description>
<!-- Paths to check -->
<file>.</file>
<!-- Exclusions -->
<exclude-pattern>*/vendor/*</exclude-pattern>
<exclude-pattern>*/node_modules/*</exclude-pattern>
<exclude-pattern>*/languages/*</exclude-pattern>
<!-- tests/ and bin/ are not shipped (the release workflow excludes them)
and intentionally stub WordPress functions, so it makes no sense
to check them against the WordPress Coding Standards. -->
<exclude-pattern>*/tests/*</exclude-pattern>
<exclude-pattern>*/bin/*</exclude-pattern>
<!-- Arguments -->
<arg value="sp"/>
<arg name="extensions" value="php"/>
<arg name="colors"/>
<!-- WordPress Coding Standards -->
<rule ref="WordPress"/>
<!-- Plugin specific configuration -->
<config name="testVersion" value="7.4-"/>
<config name="minimum_supported_wp_version" value="6.4"/>
<!-- Text domain check -->
<rule ref="WordPress.WP.I18n">
<properties>
<property name="text_domain" type="array">
<element value="training-meeting-tracker"/>
</property>
</properties>
</rule>
<!-- Prefix check -->
<rule ref="WordPress.NamingConventions.PrefixAllGlobals">
<properties>
<property name="prefixes" type="array">
<element value="tmtracker"/>
<element value="TMTRACKER"/>
<element value="TMTracker"/>
<element value="training_meeting_tracker"/>
</property>
</properties>
</rule>
<!-- PHP compatibility -->
<rule ref="PHPCompatibilityWP"/>
</ruleset>