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

35 lines
1.2 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"
2024-01-18 22:19:41 +01:00
xsi:schemaLocation="https://getpsalm.org/schema/config vendor-bin/check/vendor/vimeo/psalm/config.xsd"
2023-01-14 19:18:23 +01:00
errorBaseline="psalm-baseline.xml"
2024-01-19 20:56:02 +01:00
autoloader="vendor-bin/check/vendor/autoload.php"
2020-06-15 20:06:48 +02:00
>
2024-01-19 20:56:02 +01:00
<enableExtensions>
<extension name="ffi"/>
</enableExtensions>
2020-06-15 20:06:48 +02:00
<projectFiles>
<directory name="src" />
</projectFiles>
2023-01-11 21:06:10 +01:00
<issueHandlers>
2024-01-18 22:19:41 +01:00
<!-- Should totally go in level 1... -->
<RiskyTruthyFalsyComparison errorLevel="suppress" />
2023-01-11 21:06:10 +01:00
<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>