-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpcs.xml
More file actions
29 lines (23 loc) · 804 Bytes
/
phpcs.xml
File metadata and controls
29 lines (23 loc) · 804 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
<?xml version="1.0"?>
<ruleset name="Phunkie Effect Coding Standard">
<description>PSR-12 coding standard for Phunkie Effect</description>
<!-- Show progress -->
<arg value="p"/>
<!-- Use colors -->
<arg name="colors"/>
<!-- Paths to check -->
<file>src</file>
<file>tests</file>
<!-- PSR-12 standard -->
<rule ref="PSR12"/>
<!-- Allow long lines for now (will fix gradually) -->
<rule ref="Generic.Files.LineLength">
<properties>
<property name="lineLimit" value="150"/>
<property name="absoluteLineLimit" value="200"/>
</properties>
</rule>
<!-- Exclude generated files and legacy code -->
<exclude-pattern>*/vendor/*</exclude-pattern>
<exclude-pattern>*/cache/*</exclude-pattern>
</ruleset>