-
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathphpcs.xml
More file actions
21 lines (15 loc) · 622 Bytes
/
phpcs.xml
File metadata and controls
21 lines (15 loc) · 622 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?xml version="1.0"?>
<ruleset name="HowdyQB">
<arg name="extensions" value="php"/>
<arg name="parallel" value="40" />
<arg value="ps" />
<arg name="colors" />
<rule ref="PHPCompatibility" />
<config name="testVersion" value="7.1-"/>
<rule ref="Squiz.Commenting.DocCommentAlignment" />
<rule ref="Squiz.Functions.MultiLineFunctionDeclaration.BraceOnSameLine" />
<rule ref="Squiz.Classes.ClassDeclaration.OpenBraceNewLine" />
<exclude-pattern>/tests/*</exclude-pattern>
<exclude-pattern>/vendor/*</exclude-pattern>
<exclude-pattern>/.github/*</exclude-pattern>
</ruleset>