mirror of
https://github.com/mainwp/mainwp-child.git
synced 2025-08-30 02:32:07 +08:00
53 lines
1.9 KiB
XML
53 lines
1.9 KiB
XML
<?xml version="1.0"?>
|
|
<ruleset name="MainWP">
|
|
<description>WordPress coding standards for the MainWP Child.</description>
|
|
|
|
<file>.</file>
|
|
|
|
<arg value="sp"/>
|
|
<arg name="extensions" value="php"/>
|
|
<arg name="basepath" value="."/>
|
|
<arg name="parallel" value="36"/>
|
|
|
|
<exclude-pattern>*/bin/*</exclude-pattern>
|
|
<exclude-pattern>*/.github/*</exclude-pattern>
|
|
<exclude-pattern>*/tests/*</exclude-pattern>
|
|
|
|
<config name="minimum_supported_wp_version" value="4.9" />
|
|
<config name="testVersion" value="5.6-"/>
|
|
|
|
<rule ref="PSR1.Classes.ClassDeclaration"/>
|
|
<rule ref="PSR2.Methods.FunctionClosingBrace"/>
|
|
|
|
<rule ref="WordPress">
|
|
<exclude name="WordPress.Files.FileName"/>
|
|
<exclude name="WordPress.NamingConventions.ValidVariableName"/>
|
|
<exclude name="WordPress.CodeAnalysis.AssignmentInCondition.FoundInWhileCondition"/>
|
|
</rule>
|
|
|
|
<rule ref="WordPress.WP.I18n">
|
|
<properties>
|
|
<property name="text_domain" type="array" value="mainwp-child" />
|
|
</properties>
|
|
</rule>
|
|
|
|
<rule ref="WordPress.Arrays.MultipleStatementAlignment">
|
|
<properties>
|
|
<property name="alignMultilineItems" value="!=100"/>
|
|
<property name="exact" value="false" phpcs-only="true"/>
|
|
</properties>
|
|
</rule>
|
|
|
|
<rule ref="PHPCompatibility">
|
|
<exclude name="PHPCompatibility.Constants.NewConstants.t_finallyFound"/>
|
|
<exclude name="PHPCompatibility.Constants.NewConstants.t_yieldFound"/>
|
|
<exclude name="PHPCompatibility.Constants.NewConstants.t_ellipsisFound"/>
|
|
<exclude name="PHPCompatibility.Constants.NewConstants.t_powFound"/>
|
|
<exclude name="PHPCompatibility.Constants.NewConstants.t_pow_equalFound"/>
|
|
<exclude name="PHPCompatibility.Constants.NewConstants.t_spaceshipFound"/>
|
|
<exclude name="PHPCompatibility.Constants.NewConstants.t_coalesceFound"/>
|
|
<exclude name="PHPCompatibility.Constants.NewConstants.t_coalesce_equalFound"/>
|
|
<exclude name="PHPCompatibility.Constants.NewConstants.t_yield_fromFound"/>
|
|
</rule>
|
|
|
|
</ruleset>
|