-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpsalm.xml
More file actions
31 lines (29 loc) · 832 Bytes
/
psalm.xml
File metadata and controls
31 lines (29 loc) · 832 Bytes
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="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>
<!-- PHPUnit -->
<PropertyNotSetInConstructor>
<errorLevel type="suppress">
<directory name="tests" />
</errorLevel>
</PropertyNotSetInConstructor>
</issueHandlers>
<plugins>
<pluginClass class="Psalm\SymfonyPsalmPlugin\Plugin" />
</plugins>
</psalm>