-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpcs.xml.dist
More file actions
27 lines (22 loc) · 841 Bytes
/
phpcs.xml.dist
File metadata and controls
27 lines (22 loc) · 841 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
<?xml version="1.0"?>
<ruleset name="AI Valve">
<description>WordPress coding standards for AI Valve PHP files.</description>
<arg name="extensions" value="php"/>
<arg value="n"/>
<file>ai-valve.php</file>
<file>uninstall.php</file>
<file>src</file>
<exclude-pattern>*/src/js/*</exclude-pattern>
<exclude-pattern>*/build/*</exclude-pattern>
<exclude-pattern>*/tests/*</exclude-pattern>
<exclude-pattern>*/vendor/*</exclude-pattern>
<config name="text_domain" value="ai-valve"/>
<config name="minimum_supported_wp_version" value="7.0"/>
<config name="testVersion" value="8.3-"/>
<rule ref="WordPress">
<exclude name="WordPress.Files.FileName"/>
<exclude name="Squiz.Commenting"/>
<exclude name="Generic.Commenting.DocComment"/>
<exclude name="WordPress.DB.PreparedSQL.InterpolatedNotPrepared"/>
</rule>
</ruleset>