PluginProbe
GeoDirectory – WP Business Directory Plugin and Classified Listings Directory / trunk
GeoDirectory – WP Business Directory Plugin and Classified Listings Directory vtrunk
2.8.179 2.8.178 2.8.176 2.8.177 2.8.175 2.8.173 2.8.174 2.8.172 2.8.171 2.8.170 2.8.169 2.8.168 2.8.167 2.8.166 2.8.165 2.8.164 2.8.163 2.8.162 2.8.161 2.8.160 2.8.159 2.1.0.14 2.1.0.15 2.1.0.16 2.1.0.17 All 383 releases
geodirectory / phpcs.xml.dist

phpcs.xml.dist in GeoDirectory – WP Business Directory Plugin and Classified Listings Directory trunk, at phpcs.xml.dist

57 lines 1.4 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="WordPress Coding Standards for Plugins">
3 <description>Only scans for security issues</description>
4
5 <rule ref="WordPress-Extra" />
6
7 <!-- Check all PHP files in directory tree by default. -->
8 <arg name="extensions" value="php"/>
9 <file>.</file>
10
11 <!-- Show progress and sniff codes in all reports -->
12 <arg value="ps"/>
13
14 <exclude-pattern>*/node_modules/*</exclude-pattern>
15 <exclude-pattern>*/vendor/*</exclude-pattern>
16 <exclude-pattern>*/index.php</exclude-pattern>
17 <exclude-pattern>*/includes/libraries/*</exclude-pattern>
18 <exclude-pattern>*/tests/*</exclude-pattern>
19
20 <rule ref="Internal.NoCodeFound">
21 <exclude-pattern>*</exclude-pattern>
22 </rule>
23
24 <rule ref="Squiz.Commenting">
25 <exclude-pattern>*</exclude-pattern>
26 </rule>
27
28 <rule ref="Generic.Commenting.DocComment">
29 <exclude-pattern>*</exclude-pattern>
30 </rule>
31
32 <rule ref="Generic.Formatting">
33 <exclude-pattern>*</exclude-pattern>
34 </rule>
35
36 <rule ref="Generic.WhiteSpace">
37 <exclude-pattern>*</exclude-pattern>
38 </rule>
39
40 <rule ref="WordPress.Files.FileName.InvalidClassFileName">
41 <exclude-pattern>*</exclude-pattern>
42 </rule>
43
44 <rule ref="WordPress.Files.FileName.NotHyphenatedLowercase">
45 <exclude-pattern>*</exclude-pattern>
46 </rule>
47
48 <config name="minimum_supported_wp_version" value="4.9" />
49
50 <rule ref="WordPress.WP.I18n">
51 <properties>
52 <property name="text_domain" type="array" value="geodirectory" />
53 </properties>
54 </rule>
55
56 </ruleset>
57