PluginProbe
Category Posts Block / 5.0.0
Category Posts Block v5.0.0
5.0.0 trunk 1.0 1.1 1.2 1.2.1 1.3 1.3.1 1.3.2 1.3.3 2.0 2.1 2.2 2.3 3.1 3.2 3.3 4.0 4.1.0 4.1.1 4.1.2 4.1.3 4.1.4 4.1.5 4.1.6 All 62 releases
category-posts / phpcs.xml

phpcs.xml in Category Posts Block 5.0.0, at phpcs.xml

34 lines 1.1 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?xml version="1.0"?>
2 <ruleset name="CategoryPostsWidget Plugin">
3 <description>A custom set of rules to check for a WPized WordPress project</description>
4
5 <rule ref="WordPress">
6 <exclude name="WordPress.Files.FileName.InvalidClassFileName" />
7 <exclude name="WordPress.NamingConventions" />
8 <exclude name="WordPress.VIP.RestrictedFunctions" />
9 <exclude name="WordPress.VIP.SlowDBQuery.slow_db_query_meta_query" />
10 <exclude name="WordPress.WP.CapitalPDangit" />
11 <exclude name="WordPress.WP.I18n.Missing.Translators.Comment" />
12 <exclude name="Generic.Formatting.MultipleStatementAlignment.NotSameWarning" />
13 </rule>
14
15 <rule ref="WordPress.WP.DeprecatedClasses">
16 <properties>
17 <property name="minimum_supported_version" value="4.4"/>
18 </properties>
19 </rule>
20
21 <rule ref="WordPress.WP.DeprecatedFunctions">
22 <properties>
23 <property name="minimum_supported_version" value="4.4"/>
24 </properties>
25 </rule>
26
27 <rule ref="WordPress.WP.DeprecatedParameters">
28 <properties>
29 <property name="minimum_supported_version" value="4.4"/>
30 </properties>
31 </rule>
32
33 </ruleset>
34