forked from itk-event-database/event-database-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphpcs.xml.dist
27 lines (22 loc) · 888 Bytes
/
phpcs.xml.dist
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
<?xml version="1.0"?>
<ruleset name="PHP_CodeSniffer">
<description>The coding standard.</description>
<file>src/</file>
<file>tests/</file>
<arg value="np"/>
<arg value="s"/>
<!-- Check only php files -->
<arg name="extensions" value="php"/>
<rule ref="Drupal">
<!-- Don't complain about comments – or lack of them … -->
<exclude name="Drupal.Commenting"/>
<!-- <exclude name="Drupal.Commenting.DocComment"/> -->
<!-- <exclude name="Drupal.Commenting.DocCommentStar"/> -->
<!-- <exclude name="Drupal.Commenting.FileComment"/> -->
<!-- <exclude name="Drupal.Commenting.FunctionComment"/> -->
<!-- <exclude name="Drupal.Commenting.HookComment"/> -->
<!-- <exclude name="Drupal.Commenting.InlineComment"/> -->
<!-- <exclude name="Drupal.Commenting.PostStatementComment"/> -->
<exclude name="Drupal.Array.Array.LongLineDeclaration"/>
</rule>
</ruleset>