PluginProbe
HTML Forms – Simple WordPress Forms Plugin / 1.3.25
HTML Forms – Simple WordPress Forms Plugin v1.3.25
trunk 1.0 1.0.1 1.0.2 1.0.3 1.0.4 1.0.5 1.0.6 1.1 1.1.1 1.1.2 1.1.3 1.1.4 1.1.5 1.2.0 1.3.0 1.3.1 1.3.10 1.3.11 1.3.12 1.3.13 1.3.14 1.3.15 1.3.16 1.3.17 All 66 releases
html-forms / phpcs.xml

phpcs.xml in HTML Forms – Simple WordPress Forms Plugin 1.3.25, at phpcs.xml

48 lines 1.2 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="rules">
3 <description>rules</description>
4 <file>src/</file>
5 <file>code-snippets/</file>
6 <rule ref="WordPress-Core">
7 <exclude name="WordPress.PHP.YodaConditions" />
8 <exclude name="WordPress.DB.PreparedSQL.InterpolatedNotPrepared" />
9 <exclude name="WordPress.DB.PreparedSQLPlaceholders.UnfinishedPrepare" />
10 <exclude name="WordPress.DB.PreparedSQL.NotPrepared" />
11 <exclude name="WordPress.WP.DeprecatedFunctions.get_settingsFound" />
12 </rule>
13
14 <rule ref="WordPress.WP.I18n">
15 <properties>
16 <property name="text_domain" type="array">
17 <element value="html-forms" />
18 </property>
19 </properties>
20 </rule>
21
22 <rule ref="WordPress.WP.DeprecatedFunctions">
23 <properties>
24 <property name="minimum_supported_version" value="4.6"/>
25 </properties>
26 </rule>
27
28 <rule ref="WordPress.Files.FileName">
29 <properties>
30 <property name="strict_class_file_names" value="false"/>
31 </properties>
32 </rule>
33
34 <rule ref="WordPress.NamingConventions.ValidHookName">
35 <properties>
36 <property name="additionalWordDelimiters" value="-"/>
37 </properties>
38 </rule>
39
40 <rule ref="WordPress.WP.CronInterval">
41 <properties>
42 <property name="min_interval" value="60"/>
43 </properties>
44 </rule>
45
46 <arg name="colors" />
47 </ruleset>
48