-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpcs.xml
68 lines (51 loc) · 2.02 KB
/
phpcs.xml
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
64
65
66
67
68
<?xml version="1.0"?>
<ruleset name="Automatic Variants for GlotPress PHPCS rule set">
<description>Custom set of PHPCS rules for Automatic Variants for GlotPress.</description>
<!-- Files to check. -->
<file>.</file>
<!-- Exclude paths. -->
<exclude-pattern>*/node_modules/*</exclude-pattern>
<exclude-pattern>*/vendor/*</exclude-pattern>
<!-- Only scan PHP files. -->
<arg name="extensions" value="php"/>
<!-- The report types to print. -->
<arg name="report" value="summary,source,full"/>
<!-- Show sniff and progress. -->
<arg value="sp"/>
<!-- Strip the file paths down to the relevant bit. -->
<arg name="basepath" value="./"/>
<!-- Check up to 20 files simultaneously. -->
<arg name="parallel" value="20"/>
<!-- Whenever possible, cache the scan results and re-use those for unchanged files on the next scan. -->
<arg name="cache"/>
<!-- Enable colors in report. -->
<arg name="colors"/>
<!-- Include the WordPress Coding Standards. -->
<rule ref="WordPress">
<exclude name="WordPress.CodeAnalysis.AssignmentInCondition"/>
<exclude name="WordPress.Security.EscapeOutput.OutputNotEscaped"/>
<exclude name="WordPress.WP.AlternativeFunctions.file_system_read_fopen"/>
<exclude name="WordPress.WP.AlternativeFunctions.file_system_read_fclose"/>
<exclude name="WordPress.PHP.DevelopmentFunctions.error_log_print_r"/>
<exclude name="Squiz.PHP.DisallowMultipleAssignments.FoundInControlStructure"/>
</rule>
<rule ref="WordPress.WP.DeprecatedFunctions">
<properties>
<property name="minimum_supported_version" value="5.3"/>
</properties>
</rule>
<rule ref="WordPress.NamingConventions.PrefixAllGlobals">
<properties>
<!-- Set the global prefix. -->
<property name="prefixes" type="array" value="gp_automatic_variants"/>
</properties>
</rule>
<rule ref="WordPress.WP.I18n">
<properties>
<!-- Set the Text Domain. -->
<property name="text_domain" type="array" value="gp-automatic-variants"/>
</properties>
</rule>
<!-- VariableAnalysis. -->
<rule ref="VariableAnalysis"/>
</ruleset>