forked from mautic/mautic.org-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphpcs.xml
28 lines (22 loc) · 831 Bytes
/
phpcs.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<?xml version="1.0"?>
<ruleset name="Drupal">
<description>Drupal coding standards</description>
<!-- Directories to scan -->
<file>docroot/modules/custom</file>
<file>docroot/profiles/custom</file>
<file>docroot/themes/custom</file>
<!-- Excluded patterns -->
<exclude-pattern>*.css</exclude-pattern>
<exclude-pattern>*.js</exclude-pattern>
<exclude-pattern>*Mock.php</exclude-pattern>
<exclude-pattern>*Test.php</exclude-pattern>
<exclude-pattern>*TestCase.php</exclude-pattern>
<!-- PHPCS argument overrides -->
<arg name="colors" />
<!-- PHP configuration overrides -->
<ini name="memory_limit" value="-1" />
<!-- Project autoloader -->
<autoload>vendor/autoload.php</autoload>
<!-- Project rulesets -->
<rule ref="vendor/drupal/coder/coder_sniffer/Drupal/ruleset.xml" />
</ruleset>