-
Notifications
You must be signed in to change notification settings - Fork 0
/
psalm.xml
32 lines (31 loc) · 1 KB
/
psalm.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
totallyTyped="true"
errorLevel="6"
resolveFromConfigFile="true"
findUnusedCode="true"
findUnusedPsalmSuppress="true"
findUnusedBaselineEntry="true"
>
<projectFiles>
<directory name="src"/>
<directory name="tests"/>
<ignoreFiles>
<directory name="vendor" />
<file name="tests/bootstrap.php" />
</ignoreFiles>
</projectFiles>
<plugins>
<pluginClass class="Psalm\SymfonyPsalmPlugin\Plugin"/>
</plugins>
<issueHandlers>
<UnusedParam errorLevel="suppress" />
<LessSpecificImplementedReturnType errorLevel="suppress"/>
<ParentNotFound errorLevel="suppress"/>
<UndefinedInterfaceMethod errorLevel="suppress"/>
<ArgumentTypeCoercion errorLevel="suppress"/>
<PossiblyFalseReference errorLevel="suppress"/>
<PossiblyFalseArgument errorLevel="suppress"/>
<RiskyTruthyFalsyComparison errorLevel="suppress"/>
</issueHandlers>
</psalm>