PluginProbe
UpStream: a Project Management Plugin for WordPress / 2.1.0
UpStream: a Project Management Plugin for WordPress v2.1.0
trunk 1.39.0 1.39.1 1.39.2 1.39.3 2.0.7 2.1.0
upstream / includes / libraries / cmb2-grid / phpcs.xml

phpcs.xml in UpStream: a Project Management Plugin for WordPress 2.1.0, at includes/libraries/cmb2-grid/phpcs.xml

24 lines 946 B
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="CMB2 Grid">
3 <description>The code standard for CMB2 Grid is WordPress.</description>
4
5 <rule ref="WordPress">
6 <exclude name="Generic.Files.LowercasedFilename"/>
7 <exclude name="WordPress.NamingConventions"/>
8 <exclude name="Squiz.WhiteSpace.SuperfluousWhitespace.EmptyLines"/>
9 <exclude name="WordPress.PHP.YodaConditions.NotYoda"/>
10
11 <!-- Temporarily exclude documentation checks until all classes, methods and properties have been documented. -->
12 <exclude name="WordPress-Docs"/>
13 </rule>
14
15 <!-- exclude the 'empty' index files from some documentation checks -->
16 <rule ref="Squiz.Commenting.FileComment.WrongStyle">
17 <exclude-pattern>*/index.php</exclude-pattern>
18 </rule>
19 <rule ref="Squiz.Commenting.InlineComment.SpacingAfter">
20 <exclude-pattern>*/index.php</exclude-pattern>
21 </rule>
22
23 </ruleset>
24