mirror of
https://github.com/danog/psalm-plugin-phpunit.git
synced 2024-11-27 04:24:50 +01:00
33 lines
857 B
XML
Executable File
33 lines
857 B
XML
Executable File
<?xml version="1.0"?>
|
|
<psalm
|
|
totallyTyped="true"
|
|
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"
|
|
>
|
|
<projectFiles>
|
|
<directory name="." />
|
|
<ignoreFiles>
|
|
<directory name="vendor" />
|
|
</ignoreFiles>
|
|
</projectFiles>
|
|
|
|
<issueHandlers>
|
|
|
|
<LessSpecificReturnType errorLevel="info" />
|
|
|
|
<PropertyNotSetInConstructor>
|
|
<errorLevel type="suppress">
|
|
<directory name="tests" />
|
|
</errorLevel>
|
|
</PropertyNotSetInConstructor>
|
|
|
|
<TypeCoercion>
|
|
<errorLevel type="suppress">
|
|
<directory name="tests" />
|
|
</errorLevel>
|
|
</TypeCoercion>
|
|
|
|
</issueHandlers>
|
|
</psalm>
|