build-configs/templates/php/phpcs.xml.twig

12 lines
354 B
Twig
Raw Normal View History

2023-01-19 19:47:15 +00:00
<?xml version="1.0"?>
<!-- {{ managedText | raw }} -->
2023-01-19 19:47:15 +00:00
<ruleset name="{{ name }} coding standards">
<description>PHPCS configuration file for {{ name }}.</description>
<file>src</file>
<arg value="np"/>
2023-04-23 16:16:32 +00:00
{% for standard in php.phpcs.standards|default(['Drupal', 'DrupalPractice']) %}
<rule ref="{{ standard }}"/>
{% endif %}
2023-01-19 19:47:15 +00:00
</ruleset>