-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpsalm.xml.dist
31 lines (31 loc) · 1.18 KB
/
psalm.xml.dist
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
<?xml version="1.0"?>
<psalm
errorLevel="1"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="https://getpsalm.org/schema/config"
xsi:schemaLocation="https://getpsalm.org/schema/config vendor/vimeo/psalm/config.xsd"
findUnusedPsalmSuppress="true"
errorBaseline="psalm-baseline.xml"
findUnusedVariablesAndParams="true"
findUnusedCode="true"
findUnusedBaselineEntry="true"
ignoreInternalFunctionNullReturn="false"
ignoreInternalFunctionFalseReturn="false"
>
<projectFiles>
<directory name="src"/>
<directory name="test"/>
<ignoreFiles>
<directory name="vendor"/>
<file name="test/integration/Composer/LaminasComponentInstallerIntegrationTest.php"/>
</ignoreFiles>
</projectFiles>
<issueHandlers>
<!-- Mixed assignments are valid for cache values and thus there might be mixed assignments as well -->
<MixedAssignment errorLevel="suppress"/>
</issueHandlers>
<plugins>
<pluginClass class="Psalm\PhpUnitPlugin\Plugin"/>
<pluginClass class="Lctrs\PsalmPsrContainerPlugin\Plugin"/>
</plugins>
</psalm>