# upstream/trunk/includes/libraries/cmb2-grid/phpcs.xml

UpStream: a Project Management Plugin for WordPress, version trunk. 24 lines.

- Page: https://pluginprobe.com/plugins/upstream/trunk/code/includes/libraries/cmb2-grid/phpcs.xml
- Raw: https://pluginprobe.com/plugins/upstream/trunk/raw/includes/libraries/cmb2-grid/phpcs.xml
- Modified: 2024-05-22T12:40:54+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/upstream/trunk/code/includes/libraries/cmb2-grid/phpcs.xml#L10-L20`.

```xml
<?xml version="1.0"?>
<ruleset name="CMB2 Grid">
    <description>The code standard for CMB2 Grid is WordPress.</description>

    <rule ref="WordPress">
        <exclude name="Generic.Files.LowercasedFilename"/>
        <exclude name="WordPress.NamingConventions"/>
        <exclude name="Squiz.WhiteSpace.SuperfluousWhitespace.EmptyLines"/>
        <exclude name="WordPress.PHP.YodaConditions.NotYoda"/>

        <!-- Temporarily exclude documentation checks until all classes, methods and properties have been documented. -->
        <exclude name="WordPress-Docs"/>
    </rule>

    <!-- exclude the 'empty' index files from some documentation checks -->
    <rule ref="Squiz.Commenting.FileComment.WrongStyle">
        <exclude-pattern>*/index.php</exclude-pattern>
    </rule>
    <rule ref="Squiz.Commenting.InlineComment.SpacingAfter">
        <exclude-pattern>*/index.php</exclude-pattern>
    </rule>

</ruleset>

```
