-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathphpcs.xml
More file actions
20 lines (18 loc) · 668 Bytes
/
Copy pathphpcs.xml
File metadata and controls
20 lines (18 loc) · 668 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?xml version="1.0"?>
<ruleset name="PSR2">
<description>The PSR2 coding standard.</description>
<rule ref="PSR2"/>
<file>src/</file>
<exclude-pattern>vendor</exclude-pattern>
<exclude-pattern>resources</exclude-pattern>
<exclude-pattern>database/</exclude-pattern>
<exclude-pattern>storage/</exclude-pattern>
<exclude-pattern>node_modules/</exclude-pattern>
<exclude-pattern>public/</exclude-pattern>
<rule ref="PSR2">
<exclude name="Generic.Files.LineEndings"/>
</rule>
<rule ref="Generic.NamingConventions.UpperCaseConstantName">
<exclude-pattern>src/Enums/</exclude-pattern>
</rule>
</ruleset>