PluginProbe
weForms – Easy Drag & Drop Contact Form Builder For WordPress / 1.2.4
weForms – Easy Drag & Drop Contact Form Builder For WordPress v1.2.4
1.6.7 1.6.8 1.6.9 1.6.12 1.6.13 1.6.14 1.6.15 1.6.16 1.6.17 1.6.18 1.6.19 1.6.2 1.6.20 1.6.21 1.6.22 1.6.23 1.6.24 1.6.25 1.6.26 1.6.27 1.6.28 1.6.3 1.6.4 1.6.5 1.6.6 All 74 releases
weforms / phpcs.xml.dist

phpcs.xml.dist in weForms – Easy Drag & Drop Contact Form Builder For WordPress 1.2.4, at phpcs.xml.dist

23 lines 773 B
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="WordPress Coding Standards for Plugins">
3 <description>Generally-applicable sniffs for WordPress plugins</description>
4
5 <rule ref="WordPress-Core">
6 <exclude name="Generic.WhiteSpace.DisallowSpaceIndent"/>
7 <exclude name="WordPress.Arrays.CommaAfterArrayItem"/>
8 </rule>
9 <rule ref="WordPress-Docs"/>
10
11 <!-- Check all PHP files in directory tree by default. -->
12 <arg name="extensions" value="php"/>
13 <file>.</file>
14
15 <!-- Show sniff codes in all reports -->
16 <arg value="s"/>
17
18 <exclude-pattern>*/assets/*</exclude-pattern>
19 <exclude-pattern>*/build/*</exclude-pattern>
20 <exclude-pattern>*/node_modules/*</exclude-pattern>
21 <exclude-pattern>*/vendor/*</exclude-pattern>
22 </ruleset>
23