forked from 10up/wpcli-vulnerability-scanner
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpcs.xml.dist
More file actions
32 lines (23 loc) · 798 Bytes
/
phpcs.xml.dist
File metadata and controls
32 lines (23 loc) · 798 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
32
<?xml version="1.0"?>
<ruleset name="WPCLI-Vulnerability-Scanner">
<description>Custom ruleset for WPCLI-Vulnerability-Scanner</description>
<!-- What to scan. -->
<file>.</file>
<!-- Show progress. -->
<arg value="p"/>
<!-- Show standard. -->
<arg value="s"/>
<!-- Strip the filepaths down to the relevant bit. -->
<arg name="basepath" value="./"/>
<!-- Check up to 8 files simultaneously. -->
<arg name="parallel" value="8"/>
<!--
#############################################################################
USE THE WP_CLI_CS RULESET
#############################################################################
-->
<rule ref="WP_CLI_CS">
<exclude name="WordPress.NamingConventions.PrefixAllGlobals" />
</rule>
<config name="testVersion" value="7.0-"/>
</ruleset>