PluginProbe
Fluent Forms – Customizable Contact Forms, Survey, Quiz, & Conversational Form Builder / 4.3.19
Fluent Forms – Customizable Contact Forms, Survey, Quiz, & Conversational Form Builder v4.3.19
6.2.13 6.2.12 6.2.10 6.2.11 6.2.9 6.2.8 6.2.7 6.2.6 6.2.5 6.2.4 6.2.3 6.2.2 3.6.22 3.6.31 3.6.40 3.6.41 3.6.42 3.6.50 3.6.51 3.6.60 3.6.61 3.6.62 3.6.64 3.6.65 3.6.66 All 195 releases
fluentform / .phpcs.xml

.phpcs.xml in Fluent Forms – Customizable Contact Forms, Survey, Quiz, & Conversational Form Builder 4.3.19, at .phpcs.xml

53 lines 2.5 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="Fluent Standard">
3 <description>WordPress Coding Standard that we use in Fluent Team.</description>
4 <rule ref="WordPress">
5 <exclude name="WordPress.Files.FileName"/>
6 <exclude name="WordPress.PHP.DisallowShortTernary"/>
7 <exclude name="WordPress.WhiteSpace.OperatorSpacing"/>
8 <exclude name="WordPress.WP.EnqueuedResourceParameters"/>
9 <exclude name="WordPress.Arrays.ArrayDeclarationSpacing"/>
10 <exclude name="WordPress.WhiteSpace.CastStructureSpacing"/>
11 <exclude name="WordPress.WhiteSpace.ControlStructureSpacing"/>
12 <exclude name="WordPress.Arrays.ArrayKeySpacingRestrictions"/>
13 <exclude name="WordPress.NamingConventions.ValidFunctionName"/>
14 <exclude name="WordPress.NamingConventions.ValidVariableName"/>
15
16 <exclude name="PEAR.Functions.FunctionCallSignature"/>
17
18 <exclude name="Squiz.Commenting"/>
19 <exclude name="Squiz.PHP.DisallowMultipleAssignments"/>
20 <exclude name="Squiz.Functions.FunctionDeclarationArgumentSpacing"/>
21
22 <exclude name="Generic.Classes.OpeningBraceSameLine"/>
23 <exclude name="Generic.WhiteSpace.DisallowSpaceIndent" />
24 <exclude name="Generic.Arrays.DisallowShortArraySyntax"/>
25 <exclude name="Generic.Formatting.MultipleStatementAlignment"/>
26 <exclude name="Generic.WhiteSpace.ArbitraryParenthesesSpacing"/>
27 <exclude name="Generic.Functions.OpeningFunctionBraceKernighanRitchie"/>
28 </rule>
29
30 <rule ref="WordPress.Security.EscapeOutput">
31 <properties>
32 <property name="customEscapingFunctions" type="array">
33 <element value="fluentform_kses_js"/>
34 <element value="fluentformSanitizeCSS"/>
35 <element value="fluentform_sanitize_html"/>
36 </property>
37 </properties>
38 </rule>
39
40 <rule ref="Generic.WhiteSpace.ScopeIndent">
41 <properties>
42 <property name="indent" value="4"/>
43 <property name="tabIndent" value="false"/>
44 </properties>
45 </rule>
46
47 <rule ref="Generic.WhiteSpace.DisallowTabIndent" />
48
49 <!-- We allow empty catch statements -->
50 <rule ref="Generic.CodeAnalysis.EmptyStatement.DetectedCATCH">
51 <severity>0</severity>
52 </rule>
53 </ruleset>