1
0
mirror of https://github.com/danog/psalm.git synced 2024-11-27 12:55:26 +01:00
psalm/assets/config_levels/3.xml

56 lines
1.9 KiB
XML
Raw Normal View History

2017-02-13 05:59:33 +01:00
<?xml version="1.0"?>
<psalm
totallyTyped="false"
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"
2017-02-13 05:59:33 +01:00
>
<projectFiles>
<directory name="src" />
<ignoreFiles>
<directory name="vendor" />
</ignoreFiles>
2017-02-13 05:59:33 +01:00
</projectFiles>
<issueHandlers>
<LessSpecificReturnType errorLevel="info" />
2017-02-13 05:59:33 +01:00
<!-- level 3 issues - slightly lazy code writing, but provably low false-negatives -->
2018-05-12 07:00:10 +02:00
2017-02-13 05:59:33 +01:00
<DeprecatedMethod errorLevel="info" />
2018-03-18 23:48:43 +01:00
<DeprecatedProperty errorLevel="info" />
<DeprecatedClass errorLevel="info" />
<DeprecatedConstant errorLevel="info" />
<DeprecatedFunction errorLevel="info" />
2018-05-12 07:00:10 +02:00
<DeprecatedInterface errorLevel="info" />
<DeprecatedTrait errorLevel="info" />
2017-02-13 05:59:33 +01:00
<InternalMethod errorLevel="info" />
<InternalProperty errorLevel="info" />
<InternalClass errorLevel="info" />
2017-02-13 05:59:33 +01:00
<MissingClosureReturnType errorLevel="info" />
<MissingReturnType errorLevel="info" />
<MissingPropertyType errorLevel="info" />
<InvalidDocblock errorLevel="info" />
<MisplacedRequiredParam errorLevel="info" />
<PropertyNotSetInConstructor errorLevel="info" />
<MissingConstructor errorLevel="info" />
<MissingClosureParamType errorLevel="info" />
<MissingParamType errorLevel="info" />
2018-05-12 07:00:10 +02:00
<RedundantCondition errorLevel="info" />
<DocblockTypeContradiction errorLevel="info" />
<RedundantConditionGivenDocblockType errorLevel="info" />
2018-02-22 18:25:05 +01:00
<UnresolvableInclude errorLevel="info" />
<RawObjectIteration errorLevel="info" />
<InvalidStringClass errorLevel="info" />
2017-02-13 05:59:33 +01:00
</issueHandlers>
</psalm>