Skip to content

Commit

Permalink
Exclude rules that disallow short array syntax & short ternaries (#74)
Browse files Browse the repository at this point in the history
Exclude rules that disallow short array syntax & short ternaries
  • Loading branch information
schlessera authored Nov 11, 2019
2 parents 006eca0 + 3c0f6fa commit 75d9b6c
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions WP_CLI_CS/ruleset.xml
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,12 @@
<!-- Make some allowance for the fact that the code will be run in a command-line environment. -->
<exclude name="Generic.PHP.BacktickOperator"/>

<!-- We want to stick with short array syntax for WP-CLI. -->
<exclude name="Generic.Arrays.DisallowShortArraySyntax"/>

<!-- Keep short ternaries around for WP-CLI. -->
<exclude name="WordPress.PHP.DisallowShortTernary"/>

</rule>


Expand Down

0 comments on commit 75d9b6c

Please sign in to comment.