-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpsalm-dev.xml
32 lines (30 loc) · 902 Bytes
/
psalm-dev.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
<?xml version="1.0"?>
<psalm
name="SimpleSAMLphp testsuite"
useDocblockTypes="true"
errorLevel="4"
resolveFromConfigFile="true"
autoloader="vendor/autoload.php"
findUnusedCode="false"
findUnusedBaselineEntry="true"
reportMixedIssues="false"
hideExternalErrors="true"
allowStringToStandInForClass="true"
>
<projectFiles>
<directory name="tests" />
<!-- Ignore certain directories -->
<ignoreFiles>
<directory name="vendor" />
</ignoreFiles>
</projectFiles>
<issueHandlers>
<!-- Ignore UnresolvableInclude on CLI-scripts -->
<UnresolvableInclude>
<errorLevel type="suppress">
<file name="tests/bootstrap.php" />
<file name="tests/routers/configLoader.php" />
</errorLevel>
</UnresolvableInclude>
</issueHandlers>
</psalm>