forked from tlapnet/report
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathruleset.xml
More file actions
20 lines (18 loc) · 694 Bytes
/
ruleset.xml
File metadata and controls
20 lines (18 loc) · 694 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>
<!-- Contributte Coding Standard -->
<rule ref="./vendor/ninjify/coding-standard/contributte.xml">
<exclude name="Squiz.Commenting.FunctionComment.InvalidTypeHint"/> <!-- Throws invalid error 'Unknown type hint "string" found for $default' -->
</rule>
<!-- Package specific rules -->
<rule ref="SlevomatCodingStandard.Files.TypeNameMatchesFileName">
<properties>
<property name="rootNamespaces" type="array" value="
src=>Tlapnet\Report,
tests=>Tests
"/>
</properties>
</rule>
<!-- Exclude generated files -->
<exclude-pattern>/tests/tmp</exclude-pattern>
</ruleset>