-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathphpcs.xml
24 lines (20 loc) · 883 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
<?xml version="1.0"?>
<ruleset name="PHALCON-PSR2">
<description>The PSR-2 coding standard compatible with phalcon.</description>
<!-- Include the whole PSR-2 standard -->
<rule ref="PSR2">
<!-- Disable rule: Property name should not be prefixed with an underscore -->
<exclude name="PSR2.Classes.PropertyDeclaration.Underscore"/>
<!-- Disable rule: Method name should not be prefixed with an underscore -->
<exclude name="PSR2.Methods.MethodDeclaration.Underscore"/>
</rule>
<file>app</file>
<file>tests</file>
<exclude-pattern>app/routes.php</exclude-pattern>
<exclude-pattern>app/library</exclude-pattern>
<exclude-pattern>app/locale</exclude-pattern>
<exclude-pattern>tests/start.php</exclude-pattern>
<arg value="sp"/>
<arg name="colors"/>
<arg name="report-width" value="180"/>
</ruleset>