For more information about this repository, visit the project page at https://www.drupal.org/project/twig_tweak
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
738 B
17 lines
738 B
5 years ago
|
<?xml version="1.0"?>
|
||
|
<ruleset name="Twig Tweak">
|
||
|
<description>PHP CodeSniffer configuration for Twig Tweak module.</description>
|
||
|
<arg name="extensions" value="php, module, yml"/>
|
||
|
<rule ref="Drupal"/>
|
||
|
<rule ref="DrupalPractice">
|
||
|
<!-- Dependencies are not injected for performance reason. -->
|
||
|
<exclude name="DrupalPractice.Objects.GlobalDrupal.GlobalDrupal"/>
|
||
|
<!-- False positives. -->
|
||
|
<exclude name="Drupal.Commenting.InlineComment.Empty"/>
|
||
|
<!-- The module does not provide change records. -->
|
||
|
<exclude name="Drupal.Semantics.FunctionTriggerError.TriggerErrorTextLayoutRelaxed"/>
|
||
|
<!-- Code examples have rather long lines. -->
|
||
|
<exclude name="Drupal.Files.LineLength.TooLong"/>
|
||
|
</rule>
|
||
|
</ruleset>
|