-
Notifications
You must be signed in to change notification settings - Fork 0
/
psalm.xml.dist
32 lines (31 loc) · 1.11 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
32
<?xml version="1.0"?>
<psalm xmlns="https://getpsalm.org/schema/config"
cacheDirectory="var/phpqa/psalm"
checkForThrowsInGlobalScope="true"
ensureArrayIntOffsetsExist="true"
ensureArrayStringOffsetsExist="true"
errorBaseline="psalm.baseline.xml"
errorLevel="1"
findUnusedBaselineEntry="false"
findUnusedCode="true"
findUnusedPsalmSuppress="true"
findUnusedVariablesAndParams="true"
limitMethodComplexity="true"
restrictReturnTypes="false"
strictBinaryOperands="true">
<projectFiles>
<directory name="./"/>
<ignoreFiles allowMissingFiles="true">
<file name=".php-cs-fixer.dist.php"/>
<file name="rector.php"/>
<directory name="tests/functional/init/"/>
<directory name="tests/functional/site/var/"/>
<directory name="var/"/>
<directory name="vendor/"/>
</ignoreFiles>
</projectFiles>
<plugins>
<pluginClass class="Psalm\PhpUnitPlugin\Plugin"/>
<pluginClass class="Psalm\SymfonyPsalmPlugin\Plugin"/>
</plugins>
</psalm>