-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathphpcs.xml
More file actions
31 lines (25 loc) · 871 Bytes
/
phpcs.xml
File metadata and controls
31 lines (25 loc) · 871 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
30
31
<?xml version="1.0"?>
<ruleset name="PAQT Laravel">
<description>PAQT ruleset for Laravel projects.</description>
<arg name="report-width" value="80"/>
<arg name="report" value="full"/>
<arg name="extensions" value="php"/>
<arg name="encoding" value="utf-8"/>
<arg name="parallel" value="8"/>
<file>app</file>
<file>config</file>
<file>tests</file>
<file>database</file>
<file>modules</file>
<file>routes</file>
<rule ref="Internal.NoCodeFound">
<exclude-pattern>modules/**.blade.php</exclude-pattern>
</rule>
<rule ref="PSR1.Classes.ClassDeclaration.MissingNamespace">
<exclude-pattern>database/*</exclude-pattern>
</rule>
<rule ref="PSR1.Methods.CamelCapsMethodName.NotCamelCaps">
<exclude-pattern>tests/*</exclude-pattern>
</rule>
<rule ref="PSR2" />
</ruleset>