forked from joomla-framework/string
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathruleset.xml
More file actions
22 lines (18 loc) · 750 Bytes
/
ruleset.xml
File metadata and controls
22 lines (18 loc) · 750 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?xml version="1.0"?>
<ruleset name="Joomla">
<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>*/.github/*</exclude-pattern>
<!-- Exclude 3rd party libraries. -->
<exclude-pattern>*/src/phputf8/*</exclude-pattern>
<exclude-pattern>*/vendor/*</exclude-pattern>
<rule ref="Joomla">
<exclude name="Generic.Arrays.DisallowShortArraySyntax"/>
<!-- Required due to class methods which are named in snake case -->
<exclude name="Joomla.NamingConventions.ValidFunctionName.ScopeNotCamelCaps"/>
</rule>
</ruleset>