-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathphpcs.xml
113 lines (113 loc) · 5.94 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
<?xml version="1.0"?>
<ruleset name="SENDYAA">
<description>A custom set of rules to check for a WPized WordPress project</description>
<arg name="extensions" value="php" />
<!-- Show sniff codes in all reports -->
<arg value="s" />
<!-- Use colors in output -->
<arg name="colors" />
<!-- Show Progress -->
<arg value="p" />
<!-- Allow invoking just `phpcs` on command line without assuming STDIN for file input. -->
<file>.</file>
<!-- Exclude select folders and files from being checked. -->
<exclude-pattern>*/dev-lib/*</exclude-pattern>
<exclude-pattern>*/node_modules/*</exclude-pattern>
<exclude-pattern>*/vendor/*</exclude-pattern>
<exclude-pattern>/docroot/wp-admin/*</exclude-pattern>
<exclude-pattern>/docroot/wp-includes/*</exclude-pattern>
<exclude-pattern>/docroot/wp-*.php</exclude-pattern>
<exclude-pattern>/docroot/index.php</exclude-pattern>
<exclude-pattern>/docroot/xmlrpc.php</exclude-pattern>
<exclude-pattern>/docroot/wp-content/plugins/*</exclude-pattern>
<exclude-pattern>*.twig</exclude-pattern>
<!-- My Old Custom -->
<rule ref="WordPress">
<!-- <exclude name="Generic.Files.LineLength"/> -->
<!-- <exclude name="Generic.WhiteSpace.ScopeIndent"/> -->
<!-- <exclude name="Generic.WhiteSpace.DisallowSpaceIndent"/> -->
<!-- <exclude name="Generic.WhiteSpace.DisallowTabIndent"/> -->
<!-- <exclude name="WordPress.WhiteSpace.ControlStructureSpacing.NoSpaceBeforeCloseParenthesis"/> -->
<!-- <exclude name="WordPress.WhiteSpace.ControlStructureSpacing.NoSpaceAfterOpenParenthesis"/> -->
<!-- <exclude name="WordPress.Arrays.ArrayDeclaration"/> -->
<!-- <exclude name="WordPress.Security.EscapeOutput"/> -->
<!-- <exclude name="WordPress.Arrays.ArrayKeySpacingRestrictions"/> -->
<!-- <exclude name="WordPress.WhiteSpace.CastStructureSpacing"/> -->
<!-- <exclude name="PEAR.Functions.FunctionCallSignature.Indent"/> -->
<!-- <exclude name="PEAR.Functions.FunctionCallSignature.SpaceBeforeCloseBracket"/> -->
<!-- <exclude name="PEAR.Functions.FunctionCallSignature.SpaceAfterOpenBracket"/> -->
<exclude name="Generic.ControlStructures.InlineControlStructure.NotAllowed" />
<exclude name="WordPress.VIP.RestrictedFunctions.user_meta_get_user_meta" />
<exclude name="WordPress.VIP.RestrictedFunctions.user_meta_add_user_meta" />
<exclude name="WordPress.NamingConventions.ValidFunctionName.MethodNameInvalid" />
<exclude name="WordPress.Files.FileName.NotHyphenatedLowercase" />
<exclude name="WordPress.Files.FileName.InvalidClassFileName" />
<exclude name="WordPress.VIP.RestrictedVariables.cache_constraints___SERVER__REMOTE_ADDR__" />
<exclude name="WordPress.VIP.SuperGlobalInputUsage.AccessDetected" />
<exclude name="WordPress.VIP.ValidatedSanitizedInput.MissingUnslash" />
<exclude name="WordPress.VIP.ValidatedSanitizedInput.InputNotSanitized" />
<exclude name="WordPress.CSRF.NonceVerification.NoNonceVerification" />
<exclude name="WordPress.NamingConventions.ValidVariableName.NotSnakeCase" />
<exclude name="WordPress.NamingConventions.ValidVariableName.MemberNotSnakeCase" />
<exclude name="WordPress.NamingConventions.ValidVariableName.NotSnakeCaseMemberVar" />
<exclude name="WordPress.XSS.EscapeOutput.OutputNotEscaped" />
<exclude name="WordPress.WP.AlternativeFunctions.json_encode_json_encode" />
<exclude name="WordPress.NamingConventions.ValidVariableName.StringNotSnakeCase" />
</rule>
<!-- Let's also check that everything is properly Coded with Core Standards. -->
<rule ref="WordPress-Core" />
>
<!-- Let's also check that everything is properly documented. -->
<rule ref="WordPress-Docs" />
<!-- Include the WordPress-Extra standard. -->
<rule ref="WordPress-Extra">
<!--
We may want a middle ground though. The best way to do this is add the
entire ruleset, then rule by rule, remove ones that don't suit a project.
We can do this by running `phpcs` with the '-s' flag, which allows us to
see the names of the sniffs reporting errors.
Once we know the sniff names, we can opt to exclude sniffs which don't
suit our project like so.
-->
<!-- <exclude name="WordPress.WhiteSpace.ControlStructureSpacing"/> -->
<!-- <exclude name="WordPress.Security.EscapeOutput"/> -->
</rule>
<!-- Add in some extra rules from other standards. -->
<rule ref="Generic.CodeAnalysis.UnusedFunctionParameter" />
<rule ref="Generic.Commenting.Todo" />
<!-- Do not require docblocks for unit tests -->
<rule ref="Squiz.Commenting.FunctionComment.Missing">
<exclude-pattern>phpunit/*</exclude-pattern>
</rule>
<rule ref="Squiz.Commenting.FileComment.Missing">
<exclude-pattern>phpunit/*</exclude-pattern>
</rule>
<rule ref="Squiz.Commenting.ClassComment.SpacingAfter">
<exclude-pattern>phpunit/*</exclude-pattern>
</rule>
<rule ref="Squiz.Commenting.FunctionComment.MissingParamTag">
<exclude-pattern>phpunit/*</exclude-pattern>
</rule>
<rule ref="Generic.Commenting.DocComment.MissingShort">
<exclude-pattern>phpunit/*</exclude-pattern>
</rule>
<rule ref="Squiz.Commenting.VariableComment.Missing">
<exclude-pattern>phpunit/*</exclude-pattern>
</rule>
<rule ref="Squiz.Commenting.FunctionCommentThrowTag.Missing">
<exclude-pattern>phpunit/*</exclude-pattern>
</rule>
<rule ref="Squiz.PHP.CommentedOutCode.Found">
<exclude-pattern>*</exclude-pattern>
</rule>
<rule ref="WordPress.WP.DeprecatedClasses">
<properties>
<property name="minimum_supported_version" value="4.5" />
</properties>
</rule>
<rule ref="WordPress.WP.DeprecatedFunctions">
<properties>
<property name="minimum_supported_version" value="4.5" />
</properties>
</rule>
</ruleset>