mirror of
https://github.com/danog/psalm.git
synced 2024-11-26 20:34:47 +01:00
23 lines
625 B
XML
23 lines
625 B
XML
<?xml version="1.0"?>
|
|
<psalm
|
|
name="Example Psalm config with recommended defaults"
|
|
stopOnFirstError="false"
|
|
useDocblockTypes="true"
|
|
>
|
|
<inspectFiles>
|
|
<directory name="src" />
|
|
</inspectFiles>
|
|
|
|
<issueHandler>
|
|
<MixedArgument errorLevel="suppress" />
|
|
<MixedMethodCall errorLevel="suppress" />
|
|
<MixedPropertyFetch errorLevel="suppress" />
|
|
<MixedPropertyAssignment errorLevel="suppress" />
|
|
|
|
<InvalidDocblock errorLevel="info" />
|
|
<DeprecatedMethod errorLevel="info" />
|
|
<PossiblyUndefinedVariable errorLevel="info">
|
|
</issueHandler>
|
|
|
|
</psalm>
|