-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpsalm.dist.xml
More file actions
40 lines (38 loc) · 1.44 KB
/
Copy pathpsalm.dist.xml
File metadata and controls
40 lines (38 loc) · 1.44 KB
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
<?xml version="1.0"?>
<psalm
errorLevel="1"
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"
autoloader="./vendor/autoload.php"
totallyTyped="true"
findUnusedCode="true"
>
<projectFiles>
<ignoreFiles allowMissingFiles="true">
<directory name="var"/>
<directory name="vendor"/>
<directory name="tests"/>
<file name="public/index.php"/>
<file name="config/reference.php"/>
</ignoreFiles>
<directory name="."/>
</projectFiles>
<issueHandlers>
<MixedAssignment errorLevel="suppress"/>
<MissingConstructor errorLevel="suppress"/>
<UnusedClass errorLevel="suppress"/>
<PossiblyUnusedMethod errorLevel="suppress"/>
<PossiblyUnusedProperty errorLevel="suppress"/>
<PropertyNotSetInConstructor errorLevel="suppress"/>
<UnusedParam errorLevel="suppress"/>
<UnusedProperty errorLevel="suppress"/>
<InvalidAttribute errorLevel="suppress"/>
</issueHandlers>
<plugins>
<pluginClass class="Weirdan\DoctrinePsalmPlugin\Plugin"/>
<!-- <pluginClass class="Psalm\SymfonyPsalmPlugin\Plugin">-->
<!-- <containerXml>var/cache/dev/App_KernelDevDebugContainer.xml</containerXml>-->
<!-- </pluginClass>-->
</plugins>
</psalm>