-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathphpcs.xml
More file actions
25 lines (25 loc) · 924 Bytes
/
phpcs.xml
File metadata and controls
25 lines (25 loc) · 924 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
<?xml version="1.0"?>
<ruleset name="YAPF">
<description>The YAPF PHP coding standard.</description>
<file>src</file>
<exclude-pattern>vendor</exclude-pattern>
<exclude-pattern>docs</exclude-pattern>
<exclude-pattern>tests</exclude-pattern>
<arg name="basepath" value="."/>
<arg name="extensions" value="php" />
<arg name="colors"/>
<arg name="parallel" value="80"/>
<!-- Show progress -->
<arg value="p"/>
<rule ref="PSR12"/>
<rule ref="Generic.Files.LineLength"/>
<rule ref="SlevomatCodingStandard.Arrays.TrailingArrayComma"/>
<rule ref="SlevomatCodingStandard.TypeHints.ReturnTypeHint"/>
<rule ref="Generic.Arrays.DisallowLongArraySyntax"/>
<rule ref="Generic.WhiteSpace.ScopeIndent">
<properties>
<property name="indent" value="4"/>
<property name="tabIndent" value="true"/>
</properties>
</rule>
</ruleset>