mirror of
https://gh.wpcy.net/https://github.com/WordPress/WordPress-Coding-Standards.git
synced 2026-05-14 16:54:29 +08:00
51 lines
2 KiB
XML
51 lines
2 KiB
XML
<?xml version="1.0"?>
|
|
<ruleset name="WordPress Core">
|
|
<description>Non-controversial generally-agreed upon WordPress Coding Standards</description>
|
|
|
|
<!-- http://make.wordpress.org/core/handbook/coding-standards/php/#brace-style -->
|
|
<rule ref="Generic.ControlStructures.InlineControlStructure" />
|
|
|
|
<!-- http://make.wordpress.org/core/handbook/coding-standards/php/#remove-trailing-spaces -->
|
|
<rule ref="Squiz.WhiteSpace.SuperfluousWhitespace"/>
|
|
|
|
<!-- http://make.wordpress.org/core/handbook/coding-standards/php/#no-shorthand-php-tags -->
|
|
<rule ref="Generic.PHP.DisallowShortOpenTag"/>
|
|
|
|
<!-- important to prevent issues with content being sent before headers -->
|
|
<rule ref="Generic.Files.ByteOrderMark"/>
|
|
|
|
<!-- http://make.wordpress.org/core/handbook/coding-standards/php/#naming-conventions -->
|
|
<rule ref="Generic.PHP.LowerCaseConstant"/>
|
|
|
|
<!-- http://make.wordpress.org/core/handbook/coding-standards/php/#indentation -->
|
|
<rule ref="Generic.WhiteSpace.DisallowSpaceIndent"/>
|
|
|
|
<!-- http://make.wordpress.org/core/handbook/coding-standards/php/#error-control-operator -->
|
|
<rule ref="Generic.PHP.NoSilencedErrors" />
|
|
|
|
<rule ref="Squiz.Strings.DoubleQuoteUsage"/>
|
|
<rule ref="Squiz.Strings.DoubleQuoteUsage.ContainsVar">
|
|
<severity>0</severity>
|
|
</rule>
|
|
|
|
<rule ref="Generic.Files.LineEndings">
|
|
<properties>
|
|
<property name="eolChar" value="\n"/>
|
|
</properties>
|
|
</rule>
|
|
|
|
<rule ref="WordPress.Arrays.ArrayDeclaration"/>
|
|
<rule ref="WordPress.Arrays.ArrayKeySpacingRestrictions"/>
|
|
<rule ref="WordPress.Classes.ValidClassName"/>
|
|
<rule ref="WordPress.Files.FileName"/>
|
|
<rule ref="WordPress.Functions.FunctionCallSignature"/>
|
|
<rule ref="WordPress.Functions.FunctionDeclarationArgumentSpacing"/>
|
|
<rule ref="WordPress.NamingConventions.ValidFunctionName"/>
|
|
<rule ref="WordPress.WhiteSpace.ControlStructureSpacing"/>
|
|
<rule ref="WordPress.WhiteSpace.OperatorSpacing"/>
|
|
<rule ref="WordPress.WhiteSpace.PhpIndent"/>
|
|
<rule ref="WordPress.WhiteSpace.ScopeIndent"/>
|
|
<rule ref="WordPress.WhiteSpace.CastStructureSpacing"/>
|
|
<rule ref="WordPress.PHP.YodaConditions"/>
|
|
|
|
</ruleset>
|