psalm-plugin-phpunit/psalm.xml.dist

33 lines
857 B
Plaintext
Raw Normal View History

2018-11-14 06:36:33 +01:00
<?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>