This repository was archived by the owner on Mar 1, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpsalm.xml
More file actions
42 lines (39 loc) · 1.29 KB
/
psalm.xml
File metadata and controls
42 lines (39 loc) · 1.29 KB
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
40
41
42
<?xml version="1.0"?>
<psalm
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"
cacheDirectory="./.build/psalm"
errorBaseline="psalm-baseline.xml"
resolveFromConfigFile="true"
allowStringToStandInForClass='true'
findUnusedCode='true'
findUnusedVariablesAndParams='true'
strictBinaryOperands='true'
totallyTyped='true'
usePhpDocMethodsWithoutMagicCall='true'
phpVersion='8.0'
errorLevel='8'
>
<issueHandlers>
<LessSpecificReturnType errorLevel="info" />
</issueHandlers>
<plugins>
<pluginClass class="Psalm\MockeryPlugin\Plugin" />
<pluginClass class="Psalm\PhpUnitPlugin\Plugin" />
</plugins>
<projectFiles>
<directory name="src" />
<directory name="tests" />
<ignoreFiles>
<directory name="vendor" />
<directory name=".build" />
<directory name=".docker" />
<directory name=".github" />
</ignoreFiles>
</projectFiles>
<issueHandlers>
<PossiblyUndefinedIntArrayOffset errorLevel="error" />
<PossiblyUndefinedStringArrayOffset errorLevel="error" />
</issueHandlers>
</psalm>