-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpcs.xml
More file actions
29 lines (24 loc) · 828 Bytes
/
Copy pathphpcs.xml
File metadata and controls
29 lines (24 loc) · 828 Bytes
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="Vacansii API">
<description>Стандарты кодирования для backend-сервиса вакансий (PSR-12)</description>
<file>assets</file>
<file>components</file>
<file>controllers</file>
<file>models</file>
<file>repositories</file>
<file>services</file>
<file>widgets</file>
<exclude-pattern>*/vendor/*</exclude-pattern>
<exclude-pattern>*/runtime/*</exclude-pattern>
<rule ref="PSR12"/>
<rule ref="Generic.Files.LineLength">
<properties>
<property name="lineLimit" value="120"/>
<property name="absoluteLineLimit" value="160"/>
</properties>
</rule>
<arg name="extensions" value="php"/>
<arg name="colors"/>
<arg value="sp"/>
<arg value="n"/>
</ruleset>