# fakerpress/0.8.0/phpcs.xml

FakerPress, version 0.8.0. 26 lines.

- Page: https://pluginprobe.com/plugins/fakerpress/0.8.0/code/phpcs.xml
- Raw: https://pluginprobe.com/plugins/fakerpress/0.8.0/raw/phpcs.xml
- Modified: 2025-05-18T23:58:12+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/fakerpress/0.8.0/code/phpcs.xml#L10-L20`.

```xml
<?xml version="1.0"?>
<ruleset name="FakerPress Coding Standards">
	<rule ref="WordPress-VIP-Go"/>
	<rule ref="WordPress-Extra"/>
	<rule ref="WordPress-Core"/>
	<rule ref="WordPress-Docs">
		<exclude-pattern>*/tests/*</exclude-pattern>
	</rule>
	<rule ref="WordPress">
		<exclude name="WordPress.Files.FileName"/>
		<exclude name="WordPress.PHP.YodaConditions.NotYoda"/>
	</rule>
	<rule ref="StellarWP"/>

	<!--exclude the rule for violation of direct DB calls as some have no alternative-->
	<rule ref="WordPress.DB.DirectDatabaseQuery">
		<exclude-pattern>src/Test.php</exclude-pattern>
	</rule>

	<exclude-pattern>*/tests/*</exclude-pattern>
	<exclude-pattern>*/vendor/*</exclude-pattern>

	<!-- We always want short array syntax only. -->
	<rule ref="Generic.Arrays.DisallowLongArraySyntax" />
</ruleset>

```
