PluginProbe
FakerPress / 0.7.1
FakerPress v0.7.1
0.9.2 trunk 0.1.0 0.1.1 0.1.2 0.1.3 0.5.2 0.5.3 0.6.1 0.6.2 0.6.3 0.6.4 0.6.5 0.6.6 0.7.0 0.7.1 0.7.2 0.8.0 0.9.0 0.9.1
fakerpress / phpcs.xml

phpcs.xml in FakerPress 0.7.1, at phpcs.xml

26 lines 809 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="FakerPress Coding Standards">
3 <rule ref="WordPress-VIP-Go"/>
4 <rule ref="WordPress-Extra"/>
5 <rule ref="WordPress-Core"/>
6 <rule ref="WordPress-Docs">
7 <exclude-pattern>*/tests/*</exclude-pattern>
8 </rule>
9 <rule ref="WordPress">
10 <exclude name="WordPress.Files.FileName"/>
11 <exclude name="WordPress.PHP.YodaConditions.NotYoda"/>
12 </rule>
13 <rule ref="StellarWP"/>
14
15 <!--exclude the rule for violation of direct DB calls as some have no alternative-->
16 <rule ref="WordPress.DB.DirectDatabaseQuery">
17 <exclude-pattern>src/Test.php</exclude-pattern>
18 </rule>
19
20 <exclude-pattern>*/tests/*</exclude-pattern>
21 <exclude-pattern>*/vendor/*</exclude-pattern>
22
23 <!-- We always want short array syntax only. -->
24 <rule ref="Generic.Arrays.DisallowLongArraySyntax" />
25 </ruleset>
26