-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpcs.xml
More file actions
42 lines (33 loc) · 1.24 KB
/
phpcs.xml
File metadata and controls
42 lines (33 loc) · 1.24 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
<?xml version="1.0"?>
<ruleset name="G-code Reference">
<description>WordPress Coding Standards for G-code Reference Plugin</description>
<!-- Check PHP files only -->
<arg name="extensions" value="php"/>
<!-- Show colors in output -->
<arg name="colors"/>
<!-- Show sniff codes in output -->
<arg value="ps"/>
<!-- Use WordPress Coding Standards -->
<rule ref="WordPress">
<!-- Allow short array syntax -->
<exclude name="Generic.Arrays.DisallowShortArraySyntax"/>
<!-- Allow class file names (we use GCode_Reference_JSON) -->
<exclude name="WordPress.Files.FileName"/>
<!-- We have our own translation domain -->
<exclude name="WordPress.WP.I18n.MissingArgDomain"/>
</rule>
<!-- Check for PHP cross-version compatibility -->
<config name="testVersion" value="7.4-"/>
<!-- Text domain check -->
<rule ref="WordPress.WP.I18n">
<properties>
<property name="text_domain" type="array">
<element value="gcode-reference"/>
</property>
</properties>
</rule>
<!-- Exclude vendor and node_modules -->
<exclude-pattern>*/vendor/*</exclude-pattern>
<exclude-pattern>*/node_modules/*</exclude-pattern>
<exclude-pattern>*/assets/fuse.min.js</exclude-pattern>
</ruleset>