This repository has been archived on 2020-05-08. You can view files and clone it, but cannot push or open issues or pull requests.
2014-08-17 16:40:13 +00:00
|
|
|
<?xml version="1.0"?>
|
|
|
|
<ruleset name="Underscores WordPress Theme Coding Standards Configuration">
|
2014-11-01 00:45:39 +00:00
|
|
|
<!-- See https://github.com/squizlabs/PHP_CodeSniffer/wiki/Annotated-ruleset.xml -->
|
2015-01-06 04:48:47 +00:00
|
|
|
<!-- See https://github.com/WordPress-Coding-Standards/WordPress-Coding-Standards/blob/develop/WordPress-Core/ruleset.xml -->
|
2014-11-01 00:45:39 +00:00
|
|
|
|
2014-08-17 16:40:13 +00:00
|
|
|
<!-- Set a description for this ruleset. -->
|
|
|
|
<description>A custom set of code standard rules to check for Underscores.</description>
|
|
|
|
|
|
|
|
<!-- Include the WordPress ruleset, with exclusions. -->
|
|
|
|
<rule ref="WordPress">
|
2014-11-01 01:02:31 +00:00
|
|
|
<exclude name="Generic.WhiteSpace.ScopeIndent.Incorrect" />
|
2015-01-06 04:48:47 +00:00
|
|
|
<exclude name="PEAR.Functions.FunctionCallSignature.Indent" />
|
|
|
|
<exclude name="Generic.WhiteSpace.ScopeIndent.IncorrectExact" />
|
2014-11-01 01:02:31 +00:00
|
|
|
|
2014-08-17 16:40:13 +00:00
|
|
|
<exclude name="WordPress.XSS.EscapeOutput" />
|
|
|
|
<exclude name="WordPress.WhiteSpace.ScopeIndent.Incorrect" />
|
2014-11-01 01:06:22 +00:00
|
|
|
<exclude name="WordPress.Variables.GlobalVariables" />
|
2014-08-17 16:40:13 +00:00
|
|
|
</rule>
|
|
|
|
</ruleset>
|