mirror of
https://github.com/danog/psalm.git
synced 2024-11-27 04:45:20 +01:00
22 lines
651 B
XML
22 lines
651 B
XML
<?xml version="1.0"?>
|
|
<psalm
|
|
name="Example Psalm config with recommended defaults"
|
|
stopOnFirstError="false"
|
|
useDocblockTypes="true"
|
|
totallyTyped="false"
|
|
>
|
|
<projectFiles>
|
|
<directory name="src" />
|
|
</projectFiles>
|
|
|
|
<issueHandlers>
|
|
<InvalidDocblock errorLevel="info" />
|
|
<MissingClosureReturnType errorLevel="suppress" />
|
|
<MissingPropertyType errorLevel="info" />
|
|
<MissingReturnType errorLevel="info" />
|
|
<DeprecatedMethod errorLevel="info" />
|
|
<PossiblyUndefinedVariable errorLevel="info" />
|
|
<FailedTypeResolution errorLevel="info" />
|
|
</issueHandlers>
|
|
</psalm>
|