mirror of
https://github.com/danog/psalm-plugin-phpunit.git
synced 2024-12-02 09:27:56 +01:00
18ffce8944
- Dropped `tests` folder references (tests are not there) - Dropped `@test` reference from `composer check` (phpunit is not depended on, tests are absent) - Ignored `stubs` folder (cannot really be checked by psalm) in `psalm.xml`
22 lines
543 B
XML
Executable File
22 lines
543 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" />
|
|
<directory name="stubs" />
|
|
</ignoreFiles>
|
|
</projectFiles>
|
|
|
|
<issueHandlers>
|
|
|
|
<LessSpecificReturnType errorLevel="info" />
|
|
|
|
</issueHandlers>
|
|
</psalm>
|