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

36 lines
1.3 KiB
XML
Raw Normal View History

2020-06-15 20:06:48 +02:00
<?xml version="1.0"?>
<psalm
2024-04-15 22:03:06 +02:00
errorLevel="1"
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-04-15 21:53:01 +02:00
xsi:schemaLocation="https://getpsalm.org/schema/config vendor/vimeo/psalm/config.xsd"
2023-01-14 19:18:23 +01:00
errorBaseline="psalm-baseline.xml"
2024-04-15 21:53:01 +02:00
autoloader="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" />
2024-03-10 15:48:55 +01:00
<ignoreFiles>
2024-04-06 13:08:41 +02:00
<directory name="vendor" />
2024-03-10 15:48:55 +01:00
<file name="src/TL/TLParser.php" />
2024-04-16 19:38:03 +02:00
<file name="src/InternalDoc.php" />
2024-03-10 15:48:55 +01:00
<file name="src/TL/SecretTLParser.php" />
</ignoreFiles>
2020-06-15 20:06:48 +02:00
</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-01-11 21:06:10 +01:00
</issueHandlers>
2020-06-15 20:06:48 +02:00
</psalm>