-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.phpcs.xml.dist
More file actions
69 lines (55 loc) · 2.63 KB
/
Copy path.phpcs.xml.dist
File metadata and controls
69 lines (55 loc) · 2.63 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
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
69
<?xml version="1.0"?>
<ruleset name="WordPress VIP Coding Standards">
<description>PHP_CodeSniffer configuration for WordPress VIP</description>
<!-- What to scan -->
<file>.</file>
<!-- Include the main WordPress VIP coding standard -->
<rule ref="WordPress-VIP-Go"/>
<!-- Optional: Include additional standards -->
<rule ref="WordPress-Extra"/>
<!-- Exclude specific patterns -->
<exclude-pattern>\.git/*</exclude-pattern>
<exclude-pattern>node_modules/*</exclude-pattern>
<exclude-pattern>vendor/*</exclude-pattern>
<exclude-pattern>wordpress/*</exclude-pattern>
<exclude-pattern>*/build/*</exclude-pattern>
<exclude-pattern>assets/*</exclude-pattern>
<!-- How to scan -->
<!-- Strip the file paths down to the relevant bit -->
<arg name="basepath" value="."/>
<!-- Enables parallel processing when available for faster results. -->
<arg name="parallel" value="8"/>
<!-- Limit to PHP files -->
<arg name="extensions" value="php"/>
<arg value="s"/>
<!-- Add any custom rules or exclusions here -->
<rule ref="WordPress.NamingConventions.PrefixAllGlobals">
<properties>
<property name="prefixes" type="array">
<element value="your_prefix"/>
<!-- Change this to your project's prefix -->
</property>
</properties>
</rule>
<rule ref="WordPress-VIP-Go">
<!-- These disallow anonymous functions as action callbacks -->
<exclude name="PEAR.Functions.FunctionCallSignature.ContentAfterOpenBracket" />
<exclude name="PEAR.Functions.FunctionCallSignature.MultipleArguments" />
<exclude name="PEAR.Functions.FunctionCallSignature.CloseBracketLine" />
<!-- Allow short array syntax -->
<exclude name="Universal.Arrays.DisallowShortArraySyntax.Found" />
<!-- Do not enforce 'class-' prefix -->
<exclude name="WordPress.Files.FileName.InvalidClassFileName" />
<!-- Allow short ternaries -->
<exclude name="WordPress.PHP.DisallowShortTernary.Found" />
<!-- Generates too many false positives -->
<exclude name="WordPress.WP.CapitalPDangit.Misspelled" />
<!-- ToDo: Remove these exceptions overttime -->
<!-- Localization is done in a legacy manner in some places, and its been left as is for now -->
<exclude name="WordPress.WP.I18n.InterpolatedVariableSingular" />
<exclude name="WordPress.WP.I18n.InterpolatedVariablePlural" />
</rule>
<rule ref="WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedNamespaceFound">
<severity>0</severity>
</rule>
</ruleset>