-
Notifications
You must be signed in to change notification settings - Fork 65
/
psalm.xml.dist
37 lines (36 loc) · 1.08 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
<?xml version="1.0" encoding="UTF-8"?>
<psalm
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="https://getpsalm.org/schema/config"
cacheDirectory="./build/psalm/"
errorBaseline="psalm-baseline.xml"
errorLevel="4"
findUnusedBaselineEntry="true"
findUnusedCode="false"
findUnusedVariablesAndParams="true"
xsi:schemaLocation="https://getpsalm.org/schema/config vendor/vimeo/psalm/config.xsd"
>
<projectFiles>
<directory name="app"/>
<ignoreFiles allowMissingFiles="true">
<directory name="vendor"/>
<file name="src/UpdateHelper.php"/>
</ignoreFiles>
</projectFiles>
<issueHandlers>
<PropertyNotSetInConstructor errorLevel="info"/>
<UnusedVariable>
<errorLevel type="suppress">
<file name="app/Commands/MusicCommand.php"/>
</errorLevel>
</UnusedVariable>
<InvalidAttribute>
<errorLevel type="suppress">
<file name="app/Support/helpers.php"/>
</errorLevel>
</InvalidAttribute>
</issueHandlers>
<plugins>
<!--<pluginClass class="Psalm\LaravelPlugin\Plugin"/>-->
</plugins>
</psalm>