devel_wizard-2.x-dev/templates/project-drupal-drush/phpcs.xml.dist.twig
templates/project-drupal-drush/phpcs.xml.dist.twig
<?xml version="1.0"?>
<ruleset
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="vendor/squizlabs/php_codesniffer/phpcs.xsd"
name="Custom">
<file>./src/</file>
<file>./tests/src/</file>
<arg
name="extensions"
value="inc/PHP,install/PHP,module/PHP,php/PHP,profile/PHP,test/PHP,theme/PHP" />
<rule ref="Drupal">
<exclude name="Drupal.Commenting.ClassComment.Missing" />
<exclude name="Drupal.Commenting.Deprecated" />
<exclude name="Drupal.Commenting.DocComment.MissingShort" />
<exclude name="Drupal.Commenting.FunctionComment.IncorrectTypeHint" />
<exclude name="Drupal.Commenting.FunctionComment.Missing" />
<exclude name="Drupal.Commenting.FunctionComment.MissingParamComment" />
<exclude name="Drupal.Commenting.FunctionComment.MissingReturnComment" />
<exclude name="Drupal.Commenting.VariableComment.Missing" />
<exclude name="Drupal.Commenting.VariableComment.MissingVar" />
</rule>
<rule ref="Drupal.Files.LineLength">
<properties>
<property name="lineLimit" value="120"/>
</properties>
</rule>
<rule ref="DrupalPractice" />
<rule ref="PSR1.Classes.ClassDeclaration.MissingNamespace">
<exclude-pattern>./RoboFile.php</exclude-pattern>
</rule>
</ruleset>
