mirror of
https://github.com/opdavies/build-configs.git
synced 2025-01-23 02:27:33 +00:00
12 lines
355 B
Twig
12 lines
355 B
Twig
<?xml version="1.0"?>
|
|
<!-- {{ managedText | raw }} -->
|
|
|
|
<ruleset name="{{ name }} coding standards">
|
|
<description>PHPCS configuration file for {{ name }}.</description>
|
|
<file>src</file>
|
|
<arg value="np"/>
|
|
{% for standard in php.phpcs.standards|default(['Drupal', 'DrupalPractice']) %}
|
|
<rule ref="{{ standard }}"/>
|
|
{% endfor %}
|
|
</ruleset>
|