-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpsalm.xml
56 lines (53 loc) · 1.88 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
44
45
46
47
48
49
50
51
52
53
54
55
56
<?xml version="1.0"?>
<psalm
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="https://getpsalm.org/schema/config"
xsi:schemaLocation="https://getpsalm.org/schema/config vendor/vimeo/psalm/config.xsd"
xmlns:xi="http://www.w3.org/2001/XInclude"
errorLevel="2"
resolveFromConfigFile="true"
allowStringToStandInForClass="true"
checkForThrowsDocblock="true"
findUnusedCode="false"
findUnusedBaselineEntry="true"
usePhpDocPropertiesWithoutMagicCall="true"
usePhpDocMethodsWithoutMagicCall="true"
autoloader="config/bootstrap.php">
<projectFiles>
<directory name="src" />
<ignoreFiles>
<directory name="vendor" />
<file name="src/Console/Installer.php"/>
</ignoreFiles>
</projectFiles>
<stubs>
<file name="config/stubs.php" />
</stubs>
<issueHandlers>
<LessSpecificReturnType errorLevel="info" />
<LessSpecificImplementedReturnType errorLevel="info" />
<RedundantConditionGivenDocblockType errorLevel="info" />
<DocblockTypeContradiction errorLevel="info" />
<PropertyNotSetInConstructor errorLevel="suppress" />
<MixedPropertyAssignment>
<errorLevel type="suppress">
<directory name="src/Controller" />
</errorLevel>
</MixedPropertyAssignment>
<MixedPropertyFetch>
<errorLevel type="suppress">
<directory name="src/Controller" />
</errorLevel>
</MixedPropertyFetch>
<MixedArgument>
<errorLevel type="suppress">
<directory name="src/Controller" />
</errorLevel>
</MixedArgument>
<MixedAssignment>
<errorLevel type="suppress">
<directory name="src/Controller" />
</errorLevel>
</MixedAssignment>
</issueHandlers>
</psalm>