This repository has been archived on 2023-08-16. You can view files and clone it, but cannot push or open issues or pull requests.
Omphaloskepsis/phpcs.xml

35 lines
983 B
XML
Raw Permalink Normal View History

2021-01-09 11:13:06 +00:00
<?xml version="1.0"?>
2021-01-21 12:52:19 +00:00
<ruleset name="WordPress Coding Standards">
<description>Wordpress Coding Standards</description>
2021-01-09 11:13:06 +00:00
<!-- Scan all files in directory -->
<file>.</file>
<!-- Exclude `plugins/` directory -->
<exclude-pattern>*/plugins/*</exclude-pattern>
<!-- Scan only PHP files -->
<arg name="extensions" value="php"/>
<!-- Show colors in console -->
<arg value="-colors"/>
<!-- Show sniff codes in all reports -->
<arg value="ns"/>
<!-- Include the WordPress-Extra standard. -->
<rule ref="WordPress-Extra">
<!-- Exclude any rules here -->
<exclude name="WordPress.PHP.DisallowShortTernary"/>
</rule>
<!-- Let's also check that everything is properly documented. -->
<rule ref="WordPress-Docs"/>
<!-- Add in some extra rules from other standards. -->
<rule ref="Generic.CodeAnalysis.UnusedFunctionParameter"/>
<rule ref="Generic.Commenting.Todo"/>
<config name="minimum_supported_wp_version" value="4.9"/>
</ruleset>