forked from phpDocumentor/guides
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpsalm.xml
52 lines (47 loc) · 1.86 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
<?xml version="1.0"?>
<psalm
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="https://getpsalm.org/schema/config"
errorLevel="5"
errorBaseline="psalm-baseline.xml"
findUnusedBaselineEntry="true"
findUnusedCode="false"
>
<projectFiles>
<directory name="packages/guides/src"/>
<directory name="packages/guides/tests"/>
<directory name="packages/guides-markdown/src"/>
<!-- <directory name="packages/guides-markdown/tests" />-->
<directory name="packages/guides-restructured-text/src"/>
<directory name="packages/guides-restructured-text/tests"/>
<ignoreFiles>
<directory name="vendor"/>
</ignoreFiles>
</projectFiles>
<issueHandlers>
<LessSpecificReturnType errorLevel="info"/>
<MissingConstructor errorLevel="info" />
<PropertyNotSetInConstructor errorLevel="info" />
<DeprecatedMethod errorLevel="info">
<errorLevel type="info">
<referencedMethod name="phpDocumentor\Guides\RestructuredText\Parser\LinesIterator::prev" />
</errorLevel>
</DeprecatedMethod>
<DeprecatedClass errorLevel="info">
<errorLevel type="info">
<referencedClass name="phpDocumentor\Guides\Nodes\TemplatedNode" />
</errorLevel>
</DeprecatedClass>
<UndefinedInterfaceMethod>
<errorLevel type="suppress">
<referencedMethod name="League\Flysystem\FilesystemInterface::find"/>
</errorLevel>
<errorLevel type="suppress">
<referencedMethod name="Symfony\Component\Config\Definition\Builder\NodeParentInterface::end"/>
</errorLevel>
</UndefinedInterfaceMethod>
</issueHandlers>
<plugins>
<pluginClass class="Psalm\PhpUnitPlugin\Plugin"/>
</plugins>
</psalm>