-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpcs.xml
More file actions
23 lines (21 loc) · 766 Bytes
/
phpcs.xml
File metadata and controls
23 lines (21 loc) · 766 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?xml version="1.0" encoding="UTF-8"?>
<ruleset>
<!--
WARNING!
This is the coding standard for the project itself.
The standard is located at ./PreviousNextDrupal/ruleset.xml
-->
<file>./PreviousNextDrupal</file>
<file>./tests</file>
<rule ref="PreviousNextDrupal" />
<arg name="report" value="full"/>
<!-- Most classes and functions are tests, and are self documenting. -->
<rule ref="Drupal.Commenting.ClassComment.Missing">
<exclude-pattern>./tests/*</exclude-pattern>
</rule>
<rule ref="Drupal.Commenting.FunctionComment.Missing">
<exclude-pattern>./tests/*</exclude-pattern>
</rule>
<!-- Ignore all fixtures -->
<exclude-pattern>./tests/*/fixtures/*</exclude-pattern>
</ruleset>