Last active
June 22, 2022 18:55
-
-
Save mcnamee/33809231a5d2e4c26bfa7f6f3c3ae2cf to your computer and use it in GitHub Desktop.
Wordpress PHPCS Config
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0"?> | |
<ruleset name="Pivotal Agency"> | |
<description>Pivotal Wordpress Coding Standards</description> | |
<!-- Scan all files in directory --> | |
<file>.</file> | |
<!-- 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> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment