-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpcs.xml
29 lines (29 loc) · 1.01 KB
/
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
29
<?xml version="1.0"?>
<ruleset name="Phpake Standard" namespace="Phpake\CS\Standard">
<description>A coding standard for Phpake.</description>
<file>.</file>
<exclude-pattern>.docker/*</exclude-pattern>
<exclude-pattern>.phpunit.cache/*</exclude-pattern>
<exclude-pattern>vendor/*</exclude-pattern>
<arg name="extensions" value="php" />
<arg name="report" value="full"/>
<arg name="colors"/>
<arg value="s"/>
<autoload>./vendor/autoload.php</autoload>
<rule ref="Drupal"/>
<rule ref="Generic.Files.LineLength">
<properties>
<property name="lineLimit" value="100" />
<property name="absoluteLineLimit" value="100" />
</properties>
</rule>
<rule ref="Drupal.Commenting.FunctionComment.Missing">
<severity>0</severity>
</rule>
<rule ref="Drupal.Commenting.VariableComment.Missing">
<severity>0</severity>
</rule>
<rule ref="Drupal.Files.LineLength.TooLong">
<severity>0</severity>
</rule>
</ruleset>