FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
wordpress-develop/phpcs.xml.dist at master · TomasVotruba/wordpress-develop · GitHub
TomasVotruba
/
wordpress-develop
Public
forked from
WordPress/wordpress-develop
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
wordpress-develop
/
phpcs.xml.dist
Copy path
More file actions
More file actions
Latest commit
History
History
History
189 lines (163 loc) · 7.8 KB
Breadcrumbs
wordpress-develop
/
phpcs.xml.dist
Copy path
File metadata and controls
189 lines (163 loc) · 7.8 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
<?
xml
version
=
"
1.0
"
?>
<
ruleset
name
=
"
WordPress Coding Standards
"
>
<
description
>Apply WordPress Coding Standards to all Core files</
description
>
<
rule
ref
=
"
WordPress-Core
"
/>
<
rule
ref
=
"
WordPress.CodeAnalysis.EmptyStatement
"
/>
<
rule
ref
=
"
WordPress.NamingConventions.ValidVariableName
"
>
<
properties
>
<
property
name
=
"
customPropertiesWhitelist
"
type
=
"
array
"
>
<!--
From database structure queries
-->
<
element
value
=
"
Collation
"
/>
<
element
value
=
"
Column_name
"
/>
<
element
value
=
"
Default
"
/>
<
element
value
=
"
Extra
"
/>
<
element
value
=
"
Field
"
/>
<
element
value
=
"
Index_type
"
/>
<
element
value
=
"
Key
"
/>
<
element
value
=
"
Key_name
"
/>
<
element
value
=
"
Msg_text
"
/>
<
element
value
=
"
Non_unique
"
/>
<
element
value
=
"
Null
"
/>
<
element
value
=
"
Sub_part
"
/>
<
element
value
=
"
Type
"
/>
<!--
From plugin/theme data
-->
<
element
value
=
"
authorAndUri
"
/>
<
element
value
=
"
Name
"
/>
<
element
value
=
"
Version
"
/>
<!--
From the result of wp_xmlrpc_server::wp_getPageList()
-->
<
element
value
=
"
dateCreated
"
/>
<!--
From DOMDocument
-->
<
element
value
=
"
childNodes
"
/>
<
element
value
=
"
formatOutput
"
/>
<
element
value
=
"
nodeName
"
/>
<
element
value
=
"
nodeType
"
/>
<
element
value
=
"
parentNode
"
/>
<
element
value
=
"
preserveWhiteSpace
"
/>
<
element
value
=
"
textContent
"
/>
<!--
From PHPMailer
-->
<
element
value
=
"
AltBody
"
/>
<
element
value
=
"
Body
"
/>
<
element
value
=
"
CharSet
"
/>
<
element
value
=
"
ContentType
"
/>
<
element
value
=
"
Encoding
"
/>
<
element
value
=
"
Hostname
"
/>
<
element
value
=
"
mailHeader
"
/>
<
element
value
=
"
MIMEBody
"
/>
<
element
value
=
"
MIMEHeader
"
/>
<
element
value
=
"
Sender
"
/>
<
element
value
=
"
Subject
"
/>
<!--
From PHPUnit_Util_Getopt
-->
<
element
value
=
"
longOptions
"
/>
<!--
From POP3
-->
<
element
value
=
"
ERROR
"
/>
<!--
From ZipArchive
-->
<
element
value
=
"
numFiles
"
/>
</
property
>
</
properties
>
</
rule
>
<
arg
name
=
"
extensions
"
value
=
"
php
"
/>
<!--
Strip the filepaths down to the relevant bit.
-->
<
arg
name
=
"
basepath
"
value
=
"
./
"
/>
<!--
Check up to 20 files simultaneously.
-->
<
arg
name
=
"
parallel
"
value
=
"
20
"
/>
<!--
Show sniff codes in all reports
-->
<
arg
value
=
"
ps
"
/>
<
file
>.</
file
>
<!--
Exclude the build folder in the current directory, as Travis puts the checkout in a build directory.
-->
<
exclude-pattern
type
=
"
relative
"
>^build/*</
exclude-pattern
>
<!--
Directories and third party library exclusions
-->
<
exclude-pattern
>/node_modules/*</
exclude-pattern
>
<
exclude-pattern
>/vendor/*</
exclude-pattern
>
<
exclude-pattern
>/src/wp-admin/includes/class-ftp*</
exclude-pattern
>
<
exclude-pattern
>/src/wp-admin/includes/class-pclzip\.php</
exclude-pattern
>
<
exclude-pattern
>/src/wp-admin/includes/deprecated\.php</
exclude-pattern
>
<
exclude-pattern
>/src/wp-admin/includes/ms-deprecated\.php</
exclude-pattern
>
<
exclude-pattern
>/src/wp-includes/atomlib\.php</
exclude-pattern
>
<
exclude-pattern
>/src/wp-includes/class-IXR\.php</
exclude-pattern
>
<
exclude-pattern
>/src/wp-includes/class-json\.php</
exclude-pattern
>
<
exclude-pattern
>/src/wp-includes/class-phpass\.php</
exclude-pattern
>
<
exclude-pattern
>/src/wp-includes/class-phpmailer\.php</
exclude-pattern
>
<
exclude-pattern
>/src/wp-includes/class-pop3\.php</
exclude-pattern
>
<
exclude-pattern
>/src/wp-includes/class-requests\.php</
exclude-pattern
>
<
exclude-pattern
>/src/wp-includes/class-simplepie\.php</
exclude-pattern
>
<
exclude-pattern
>/src/wp-includes/class-smtp\.php</
exclude-pattern
>
<
exclude-pattern
>/src/wp-includes/class-snoopy\.php</
exclude-pattern
>
<
exclude-pattern
>/src/wp-includes/class-wp-block-parser\.php</
exclude-pattern
>
<
exclude-pattern
>/src/wp-includes/deprecated\.php</
exclude-pattern
>
<
exclude-pattern
>/src/wp-includes/ms-deprecated\.php</
exclude-pattern
>
<
exclude-pattern
>/src/wp-includes/pluggable-deprecated\.php</
exclude-pattern
>
<
exclude-pattern
>/src/wp-includes/rss\.php</
exclude-pattern
>
<
exclude-pattern
>/src/wp-includes/blocks/*</
exclude-pattern
>
<
exclude-pattern
>/src/wp-includes/ID3/*</
exclude-pattern
>
<
exclude-pattern
>/src/wp-includes/IXR/*</
exclude-pattern
>
<
exclude-pattern
>/src/wp-includes/random_compat/*</
exclude-pattern
>
<
exclude-pattern
>/src/wp-includes/Requests/*</
exclude-pattern
>
<
exclude-pattern
>/src/wp-includes/SimplePie/*</
exclude-pattern
>
<
exclude-pattern
>/src/wp-includes/Text/*</
exclude-pattern
>
<
exclude-pattern
>/tests/phpunit/includes/speed-trap-listener\.php</
exclude-pattern
>
<!--
Test data and fixtures
-->
<
exclude-pattern
>/tests/phpunit/build*</
exclude-pattern
>
<
exclude-pattern
>/tests/phpunit/data/*</
exclude-pattern
>
<
exclude-pattern
>/tools/*</
exclude-pattern
>
<!--
Whitelist the WP DB Class and related tests for usage of direct database access functions.
-->
<
rule
ref
=
"
WordPress.DB.RestrictedFunctions
"
>
<
exclude-pattern
>/src/wp-includes/wp-db\.php</
exclude-pattern
>
<
exclude-pattern
>/tests/phpunit/tests/db/charset\.php</
exclude-pattern
>
</
rule
>
<!--
Whitelist the WP DB related tests for issues with prepared SQL placeholders
(as the handling of those are being tested).
-->
<
rule
ref
=
"
WordPress.DB.PreparedSQLPlaceholders.UnfinishedPrepare
"
>
<
exclude-pattern
>/tests/phpunit/tests/db\.php</
exclude-pattern
>
</
rule
>
<
rule
ref
=
"
WordPress.DB.PreparedSQLPlaceholders.UnsupportedPlaceholder
"
>
<
exclude-pattern
>/tests/phpunit/tests/db\.php</
exclude-pattern
>
</
rule
>
<
rule
ref
=
"
WordPress.DB.PreparedSQLPlaceholders.UnescapedLiteral
"
>
<
exclude-pattern
>/tests/phpunit/tests/db\.php</
exclude-pattern
>
</
rule
>
<
rule
ref
=
"
WordPress.DB.PreparedSQL.NotPrepared
"
>
<
exclude-pattern
>/tests/phpunit/tests/admin/includesSchema\.php</
exclude-pattern
>
<
exclude-pattern
>/tests/phpunit/tests/multisite/site\.php</
exclude-pattern
>
</
rule
>
<!--
Whitelist the I18n functions file from issues identified by the I18n sniff
(such as calling the low-level translate() function).
-->
<
rule
ref
=
"
WordPress.WP.I18n
"
>
<
exclude-pattern
>/src/wp-includes/l10n\.php</
exclude-pattern
>
<
exclude-pattern
>/tests/phpunit/tests/l10n\.php</
exclude-pattern
>
<
exclude-pattern
>/tests/phpunit/tests/l10n/loadTextdomainJustInTime\.php</
exclude-pattern
>
</
rule
>
<
rule
ref
=
"
Generic.Functions.FunctionCallArgumentSpacing
"
>
<
exclude-pattern
>/wp-config\.php</
exclude-pattern
>
<
exclude-pattern
>/wp-config-sample\.php</
exclude-pattern
>
<
exclude-pattern
>/wp-tests-config\.php</
exclude-pattern
>
<
exclude-pattern
>/wp-tests-config-sample\.php</
exclude-pattern
>
</
rule
>
<
rule
ref
=
"
Generic.Files.LineEndings
"
>
<
exclude-pattern
>/wp-config\.php</
exclude-pattern
>
<
exclude-pattern
>/wp-config-sample\.php</
exclude-pattern
>
</
rule
>
<!--
WPCS1620: template.php isn't a template tag file.
-->
<
rule
ref
=
"
WordPress.Files.FileName.InvalidTemplateTagFileName
"
>
<
exclude-pattern
>/src/wp-includes/template\.php</
exclude-pattern
>
</
rule
>
<!--
WPCS1621: These files are expected to use _ instead of -.
-->
<
rule
ref
=
"
WordPress.Files.FileName.NotHyphenatedLowercase
"
>
<
exclude-pattern
>/src/_index\.php</
exclude-pattern
>
<
exclude-pattern
>/src/wp-admin/_index\.php</
exclude-pattern
>
<
exclude-pattern
>/src/wp-content/themes/twentythirteen/taxonomy-post_format\.php</
exclude-pattern
>
<
exclude-pattern
>/src/wp-content/themes/twentyfourteen/taxonomy-post_format\.php</
exclude-pattern
>
</
rule
>
<!--
Whitelist test classes for select sniffs.
-->
<
rule
ref
=
"
WordPress.Files.FileName
"
>
<
properties
>
<
property
name
=
"
custom_test_class_whitelist
"
type
=
"
array
"
value
=
"
WP_UnitTestCase,WP_Ajax_UnitTestCase,WP_Canonical_UnitTestCase,WP_Test_REST_TestCase,WP_Test_REST_Controller_Testcase,WP_Test_REST_Post_Type_Controller_Testcase,WP_XMLRPC_UnitTestCase
"
/>
</
properties
>
</
rule
>
<!--
Exclude the unit tests from select sniffs.
-->
<
rule
ref
=
"
WordPress.Files.FileName.NotHyphenatedLowercase
"
>
<
exclude-pattern
>/tests/phpunit/tests/*</
exclude-pattern
>
</
rule
>
<
rule
ref
=
"
PEAR.NamingConventions.ValidClassName.Invalid
"
>
<
exclude-pattern
>/tests/phpunit/tests/*</
exclude-pattern
>
</
rule
>
</
ruleset
>
Back
|
FazBrowse Home
|
New Git URL