-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpsalm.xml.dist
38 lines (37 loc) · 1.2 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
33
34
35
36
37
38
<?xml version="1.0"?>
<psalm xmlns="https://getpsalm.org/schema/config"
cacheDirectory="var/phpqa/psalm"
errorLevel="1"
findUnusedVariablesAndParams="true">
<projectFiles>
<directory name="."/>
<ignoreFiles>
<directory name="var/"/>
<directory name="vendor/"/>
</ignoreFiles>
</projectFiles>
<issueHandlers>
<MissingConstructor>
<errorLevel type="info">
<directory name="Annotation/" />
<directory name="Test/" />
</errorLevel>
</MissingConstructor>
<MissingTemplateParam>
<errorLevel type="info">
<file name="FilterIterator.php"/>
<file name="Iterator.php"/>
</errorLevel>
</MissingTemplateParam>
<RedundantCondition>
<errorLevel type="info">
<file name="Metadata/Annotation/AnnotationDriver.php" />
</errorLevel>
</RedundantCondition>
<PropertyNotSetInConstructor>
<errorLevel type="info">
<directory name="Test/" />
</errorLevel>
</PropertyNotSetInConstructor>
</issueHandlers>
</psalm>