-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpcs.xml.dist
63 lines (45 loc) · 1.97 KB
/
phpcs.xml.dist
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
54
55
56
57
58
59
60
61
62
63
<?xml version="1.0"?>
<ruleset name="WordPress Pay Add-on: Crowdfunding rules">
<config name="minimum_supported_wp_version" value="4.7"/>
<config name="testVersion" value="5.6-"/>
<file>.</file>
<arg name="colors"/>
<arg name="extensions" value="php"/>
<arg name="parallel" value="8" />
<arg value="sp"/>
<exclude-pattern>node_modules/*</exclude-pattern>
<exclude-pattern>tests/bootstrap.php</exclude-pattern>
<exclude-pattern>tests/wp-config.php</exclude-pattern>
<exclude-pattern>vendor/*</exclude-pattern>
<exclude-pattern>wordpress/*</exclude-pattern>
<exclude-pattern type="relative">^wp-content/*</exclude-pattern>
<rule ref="Generic.Files.OneObjectStructurePerFile.MultipleFound">
<exclude-pattern>src/ImportActions.php</exclude-pattern>
</rule>
<rule ref="VariableAnalysis"/>
<rule ref="PHPCompatibilityWP"/>
<rule ref="PHPCompatibility.FunctionDeclarations.NewClosure.ThisFoundOutsideClass">
<exclude-pattern>src/i18n-make-pot.php</exclude-pattern>
</rule>
<rule ref="Squiz.Commenting.ClassComment.Missing">
<exclude-pattern>src/ImportActions.php</exclude-pattern>
</rule>
<rule ref="Squiz.Commenting.FunctionComment.Missing">
<exclude-pattern>src/ImportActions.php</exclude-pattern>
</rule>
<rule ref="VariableAnalysis.CodeAnalysis.VariableAnalysis.UndefinedVariable">
<exclude-pattern>views/page-importer-process.php</exclude-pattern>
</rule>
<rule ref="VariableAnalysis.CodeAnalysis.VariableAnalysis.UnusedVariable">
<exclude-pattern>src/ImportActions.php</exclude-pattern>
</rule>
<rule ref="WordPress">
<exclude name="WordPress.DB.SlowDBQuery.slow_db_query_meta_key"/>
<exclude name="WordPress.Files.FileName.InvalidClassFileName"/>
<exclude name="WordPress.Files.FileName.NotHyphenatedLowercase"/>
<exclude name="WordPress.Security.SafeRedirect.wp_redirect_wp_redirect"/>
</rule>
<rule ref="WordPress.PHP.DiscouragedPHPFunctions.runtime_configuration_putenv">
<exclude-pattern>tests/bootstrap.php</exclude-pattern>
</rule>
</ruleset>