1
0
mirror of https://github.com/danog/MadelineProto.git synced 2024-11-26 20:54:42 +01:00
MadelineProto/psalm.xml

34 lines
1.1 KiB
XML
Raw Normal View History

2020-06-15 20:06:48 +02:00
<?xml version="1.0"?>
<psalm
2023-08-05 22:55:13 +02:00
errorLevel="2"
2020-06-15 20:06:48 +02:00
resolveFromConfigFile="true"
findUnusedCode="false"
findUnusedBaselineEntry="false"
2023-10-21 17:23:17 +02:00
ignoreInternalFunctionFalseReturn="true"
ignoreInternalFunctionNullReturn="true"
2020-06-15 20:06:48 +02:00
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"
2023-01-14 19:18:23 +01:00
errorBaseline="psalm-baseline.xml"
2020-06-15 20:06:48 +02:00
>
<projectFiles>
<directory name="src" />
<ignoreFiles>
<directory name="vendor" />
2023-11-30 17:52:29 +01:00
<!-- FFI psalm bug -->
<file name="src/Ogg.php" />
2020-06-15 20:06:48 +02:00
</ignoreFiles>
</projectFiles>
2023-01-11 21:06:10 +01:00
<issueHandlers>
<ParamNameMismatch errorLevel="suppress" />
2023-01-14 19:51:23 +01:00
<StringIncrement errorLevel="suppress" />
2023-01-14 19:18:23 +01:00
<InvalidTraversableImplementation errorLevel="suppress" />
2023-01-15 11:21:57 +01:00
<RedundantPropertyInitializationCheck errorLevel="suppress" />
2023-10-26 19:39:23 +02:00
<MissingConstructor>
<errorLevel type="suppress">
<file name="src/InternalDoc.php" />
</errorLevel>
</MissingConstructor>
2023-01-11 21:06:10 +01:00
</issueHandlers>
2020-06-15 20:06:48 +02:00
</psalm>