-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpcs.xml
More file actions
23 lines (18 loc) · 685 Bytes
/
phpcs.xml
File metadata and controls
23 lines (18 loc) · 685 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?xml version="1.0"?>
<ruleset name="PSR2-With-Codeception">
<file>./</file>
<exclude-pattern>/tests/_data/*</exclude-pattern>
<exclude-pattern>/tests/_output/*</exclude-pattern>
<exclude-pattern>/vendor/*</exclude-pattern>
<!-- Show colors in console -->
<arg value="-colors"/>
<!-- Show progress and sniff codes in all reports; Show progress of the run -->
<arg value="sp"/>
<!-- Scan only PHP files -->
<arg name="extensions" value="php"/>
<rule ref="PSR2"/>
<rule ref="PSR12"/>
<rule ref="PSR2.Methods.MethodDeclaration.Underscore">
<exclude-pattern>/src/ComposerProject.php</exclude-pattern>
</rule>
</ruleset>