2024-07-10 18:28:19 +05:45
|
|
|
<?xml version="1.0"?>
|
|
|
|
<psalm
|
2024-09-29 16:59:27 +05:45
|
|
|
errorLevel="1"
|
2024-07-10 18:28:19 +05:45
|
|
|
resolveFromConfigFile="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"
|
2024-09-29 16:59:27 +05:45
|
|
|
findUnusedBaselineEntry="true"
|
|
|
|
findUnusedCode="true"
|
2024-07-10 18:28:19 +05:45
|
|
|
>
|
|
|
|
<projectFiles>
|
|
|
|
<directory name="src" />
|
|
|
|
<ignoreFiles>
|
|
|
|
<directory name="vendor" />
|
|
|
|
</ignoreFiles>
|
|
|
|
</projectFiles>
|
|
|
|
<issueHandlers>
|
2024-09-29 16:59:27 +05:45
|
|
|
<!-- Turn off dead code warnings for externally called functions -->
|
|
|
|
<PossiblyUnusedProperty errorLevel="suppress" />
|
|
|
|
<PossiblyUnusedMethod errorLevel="suppress" />
|
|
|
|
<PossiblyUnusedReturnValue errorLevel="suppress" />
|
2024-07-10 18:28:19 +05:45
|
|
|
</issueHandlers>
|
|
|
|
</psalm>
|