Move all files to old/drupal/

This commit is contained in:
Oliver Davies 2025-10-02 07:57:25 +01:00
parent 8203e983d5
commit 7d76bf2968
468 changed files with 0 additions and 0 deletions

28
old/drupal/phpcs.xml.dist Normal file
View file

@ -0,0 +1,28 @@
<?xml version="1.0"?>
<ruleset name="Custom code">
<description>Drupal Coding Standards</description>
<file>./web/modules/custom</file>
<file>./web/themes/custom</file>
<arg name="extensions" value="inc,install,module,php,profile,test,theme,yml"/>
<!-- Exclude third party code.-->
<exclude-pattern>./web/sites/*</exclude-pattern>
<exclude-pattern>./web/themes/custom/*\.(?!theme$)</exclude-pattern>
<arg name="colors"/>
<arg value="np"/>
<rule ref="Drupal">
<exclude name="Drupal.Commenting.ClassComment.Missing"/>
<exclude name="Drupal.Commenting.DataTypeNamespace.DataTypeNamespace"/>
<exclude name="Drupal.Commenting.DocComment.MissingShort"/>
<exclude name="Drupal.Commenting.FunctionComment.Missing"/>
<exclude name="Drupal.Commenting.FunctionComment.MissingReturnComment"/>
<exclude name="Drupal.Commenting.VariableComment.Missing"/>
</rule>
<rule ref="DrupalPractice">
<exclude name="DrupalPractice.Objects.StrictSchemaDisabled.StrictConfigSchema"/>
</rule>
</ruleset>