-
Notifications
You must be signed in to change notification settings - Fork 6
/
phpcs.xml
27 lines (23 loc) · 830 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
<?xml version="1.0"?>
<ruleset name="plainToClass">
<arg name="tab-width" value="4"/>
<!-- Description -->
<description>Custom ruleset Based on PSR12</description>
<!-- Rule to be referenced (`PSR12`) -->
<rule ref="PSR12"/>
<!-- Specify extensions (.php) -->
<arg name="extensions" value="php"/>
<arg name="report" value="full"/>
<arg name="report-junit" value="./public/phpcs-junit.xml"/>
<!-- Длина строки -->
<rule ref="Generic.Files.LineLength">
<properties>
<property name="lineLimit" value="180"/>
<property name="absoluteLineLimit" value="0"/>
</properties>
</rule>
<rule ref="PEAR.Commenting.FunctionComment.Missing">
<exclude-pattern>tests/*</exclude-pattern>
</rule>
<file>src/</file>
</ruleset>