# weforms/1.2.4/phpcs.xml.dist

weForms – Easy Drag &amp; Drop Contact Form Builder For WordPress, version 1.2.4. 23 lines.

- Page: https://pluginprobe.com/plugins/weforms/1.2.4/code/phpcs.xml.dist
- Raw: https://pluginprobe.com/plugins/weforms/1.2.4/raw/phpcs.xml.dist
- Modified: 2017-12-28T05:03:46+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/weforms/1.2.4/code/phpcs.xml.dist#L10-L20`.

```
<?xml version="1.0"?>
<ruleset name="WordPress Coding Standards for Plugins">
    <description>Generally-applicable sniffs for WordPress plugins</description>

    <rule ref="WordPress-Core">
        <exclude name="Generic.WhiteSpace.DisallowSpaceIndent"/>
        <exclude name="WordPress.Arrays.CommaAfterArrayItem"/>
    </rule>
    <rule ref="WordPress-Docs"/>

    <!-- Check all PHP files in directory tree by default. -->
    <arg name="extensions" value="php"/>
    <file>.</file>

    <!-- Show sniff codes in all reports -->
    <arg value="s"/>

    <exclude-pattern>*/assets/*</exclude-pattern>
    <exclude-pattern>*/build/*</exclude-pattern>
    <exclude-pattern>*/node_modules/*</exclude-pattern>
    <exclude-pattern>*/vendor/*</exclude-pattern>
</ruleset>

```
