-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpsalm.xml
43 lines (40 loc) · 1.18 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
33
34
35
36
37
38
39
40
41
42
43
<?xml version="1.0"?>
<psalm
errorLevel="2"
strictBinaryOperands="true"
findUnusedPsalmSuppress="true"
sealAllMethods="true"
findUnusedBaselineEntry="false"
findUnusedCode="false"
xmlns="https://getpsalm.org/schema/config"
>
<projectFiles>
<directory name="src" />
<directory name="tests" />
<ignoreFiles>
<file name="src/DependencyInjection/Configuration.php" />
</ignoreFiles>
</projectFiles>
<issueHandlers>
<UndefinedClass>
<errorLevel type="suppress">
<directory name="tests" />
<file name=".php-cs-fixer.php" />
</errorLevel>
</UndefinedClass>
<!-- PHPUnit -->
<PropertyNotSetInConstructor>
<errorLevel type="suppress">
<directory name="tests" />
</errorLevel>
</PropertyNotSetInConstructor>
<MissingDependency>
<errorLevel type="suppress">
<directory name="tests" />
</errorLevel>
</MissingDependency>
</issueHandlers>
<plugins>
<pluginClass class="Psalm\SymfonyPsalmPlugin\Plugin" />
</plugins>
</psalm>