-
Notifications
You must be signed in to change notification settings - Fork 29
/
ruleset.xml
39 lines (32 loc) · 1.26 KB
/
ruleset.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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<?xml version="1.0"?>
<ruleset name="Joomla-Framework-Website">
<arg name="report" value="full"/>
<arg name="tab-width" value="4"/>
<arg name="encoding" value="utf-8"/>
<arg value="sp"/>
<arg name="colors" />
<!-- Exclude folders not containing production code -->
<exclude-pattern>*/cache/*</exclude-pattern>
<exclude-pattern>*/etc/*</exclude-pattern>
<exclude-pattern>*/logs/*</exclude-pattern>
<exclude-pattern>*/media_src/*</exclude-pattern>
<exclude-pattern>*/node_modules/*</exclude-pattern>
<exclude-pattern>*/testconfigs/*</exclude-pattern>
<exclude-pattern>*/www/*</exclude-pattern>
<!-- Exclude 3rd party libraries. -->
<exclude-pattern>*/src/DebugBar/*</exclude-pattern>
<exclude-pattern>*/vendor/*</exclude-pattern>
<!-- Exclude non-PHP files -->
<exclude-pattern>*/Gruntfile.js</exclude-pattern>
<file>./bin</file>
<file>./src</file>
<file>./www</file>
<rule ref="PSR12" />
<!-- Extend the line length to avoid the need for goofy concatenation or sprintf on a query string -->
<rule ref="Generic.Files.LineLength">
<properties>
<property name="lineLimit" value="250" />
<property name="absoluteLineLimit" value="0" />
</properties>
</rule>
</ruleset>