# packeta/1.2.5/phpcs.xml

Packeta, version 1.2.5. 38 lines.

- Page: https://pluginprobe.com/plugins/packeta/1.2.5/code/phpcs.xml
- Raw: https://pluginprobe.com/plugins/packeta/1.2.5/raw/phpcs.xml
- Modified: 2022-03-30T13:08:18+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/packeta/1.2.5/code/phpcs.xml#L10-L20`.

```xml
<?xml version="1.0"?>
<ruleset name="WooCommerce Coding Standards">
    <description>Packetery WP plugin coding standards ruleset.</description>

    <file>cli</file>
    <file>src</file>
    <file>bootstrap.php</file>
    <file>bootstrap-cli.php</file>
    <file>packeta.php</file>

    <!-- Configs -->
    <config name="minimum_supported_wp_version" value="5.0" />

    <!-- Rules -->
    <rule ref="WooCommerce-Core">
        <exclude name="Generic.Arrays.DisallowShortArraySyntax.Found"/>
        <exclude name="WordPress.Files.FileName.NotHyphenatedLowercase"/>
        <exclude name="WordPress.Files.FileName.InvalidClassFileName"/>
        <exclude name="WordPress.NamingConventions.ValidVariableName.PropertyNotSnakeCase"/>
        <exclude name="WordPress.NamingConventions.ValidVariableName.VariableNotSnakeCase"/>
        <exclude name="WordPress.NamingConventions.ValidVariableName.UsedPropertyNotSnakeCase"/>
        <exclude name="WordPress.NamingConventions.ValidVariableName.InterpolatedVariableNotSnakeCase"/>
        <exclude name="WordPress.NamingConventions.ValidFunctionName.MethodNameInvalid"/>
        <exclude name="PHPCompatibility.FunctionNameRestrictions.ReservedFunctionNames.MethodDoubleUnderscore"/>
        <exclude name="WordPress.NamingConventions.ValidFunctionName.MethodDoubleUnderscore"/>
    </rule>

    <rule ref="WordPress.WP.I18n">
        <properties>
            <property name="text_domain" type="array" value="packetery" />
        </properties>
    </rule>

    <rule ref="PHPCompatibility">
        <exclude-pattern>tests/</exclude-pattern>
    </rule>
</ruleset>

```
