2017-02-13 05:59:33 +01:00
|
|
|
<?xml version="1.0"?>
|
|
|
|
<psalm
|
|
|
|
name="Example Psalm config with recommended defaults"
|
|
|
|
stopOnFirstError="false"
|
|
|
|
useDocblockTypes="true"
|
|
|
|
totallyTyped="false"
|
|
|
|
>
|
|
|
|
<projectFiles>
|
|
|
|
<directory name="src" />
|
|
|
|
</projectFiles>
|
|
|
|
|
|
|
|
<issueHandlers>
|
2017-03-18 17:25:42 +01:00
|
|
|
<LessSpecificReturnType errorLevel="info" />
|
|
|
|
|
2017-02-13 05:59:33 +01:00
|
|
|
<!-- level 3 issues - slightly lazy code writing, but provably low false-negatives -->
|
|
|
|
<DeprecatedMethod errorLevel="info" />
|
|
|
|
|
|
|
|
<MissingClosureReturnType errorLevel="info" />
|
|
|
|
<MissingReturnType errorLevel="info" />
|
|
|
|
<MissingPropertyType errorLevel="info" />
|
|
|
|
<InvalidDocblock errorLevel="info" />
|
|
|
|
<MisplacedRequiredParam errorLevel="info" />
|
|
|
|
|
|
|
|
<PropertyNotSetInConstructor errorLevel="info" />
|
|
|
|
<MissingConstructor errorLevel="info" />
|
2017-09-02 17:18:56 +02:00
|
|
|
<UntypedParam errorLevel="info" />
|
2017-02-13 05:59:33 +01:00
|
|
|
</issueHandlers>
|
|
|
|
</psalm>
|