# fluentform/6.2.6/.phpcs.xml

Fluent Forms – Customizable Contact Forms, Survey, Quiz, &amp; Conversational Form Builder, version 6.2.6. 53 lines.

- Page: https://pluginprobe.com/plugins/fluentform/6.2.6/code/.phpcs.xml
- Raw: https://pluginprobe.com/plugins/fluentform/6.2.6/raw/.phpcs.xml
- Modified: 2022-10-21T13:26:36+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/fluentform/6.2.6/code/.phpcs.xml#L10-L20`.

```xml
<?xml version="1.0"?>
<ruleset name="Fluent Standard">
    <description>WordPress Coding Standard that we use in Fluent Team.</description>
        <rule ref="WordPress">
            <exclude name="WordPress.Files.FileName"/>
            <exclude name="WordPress.PHP.DisallowShortTernary"/>
            <exclude name="WordPress.WhiteSpace.OperatorSpacing"/>
            <exclude name="WordPress.WP.EnqueuedResourceParameters"/>
            <exclude name="WordPress.Arrays.ArrayDeclarationSpacing"/>
            <exclude name="WordPress.WhiteSpace.CastStructureSpacing"/>
            <exclude name="WordPress.WhiteSpace.ControlStructureSpacing"/>
            <exclude name="WordPress.Arrays.ArrayKeySpacingRestrictions"/>
            <exclude name="WordPress.NamingConventions.ValidFunctionName"/>
            <exclude name="WordPress.NamingConventions.ValidVariableName"/>
            
            <exclude name="PEAR.Functions.FunctionCallSignature"/>

            <exclude name="Squiz.Commenting"/>
            <exclude name="Squiz.PHP.DisallowMultipleAssignments"/>
            <exclude name="Squiz.Functions.FunctionDeclarationArgumentSpacing"/>
            
            <exclude name="Generic.Classes.OpeningBraceSameLine"/>
            <exclude name="Generic.WhiteSpace.DisallowSpaceIndent" />
            <exclude name="Generic.Arrays.DisallowShortArraySyntax"/>
            <exclude name="Generic.Formatting.MultipleStatementAlignment"/>
            <exclude name="Generic.WhiteSpace.ArbitraryParenthesesSpacing"/>
            <exclude name="Generic.Functions.OpeningFunctionBraceKernighanRitchie"/>
        </rule>

        <rule ref="WordPress.Security.EscapeOutput">
            <properties>
                <property name="customEscapingFunctions" type="array">
                    <element value="fluentform_kses_js"/>
                    <element value="fluentformSanitizeCSS"/>
                    <element value="fluentform_sanitize_html"/>
                </property>
            </properties>
        </rule>

        <rule ref="Generic.WhiteSpace.ScopeIndent">
            <properties>
                <property name="indent" value="4"/>
                <property name="tabIndent" value="false"/>
            </properties>
        </rule>
        
        <rule ref="Generic.WhiteSpace.DisallowTabIndent" />

        <!-- We allow empty catch statements -->
        <rule ref="Generic.CodeAnalysis.EmptyStatement.DetectedCATCH">
            <severity>0</severity>
        </rule>
</ruleset>
```
