1
0
mirror of https://github.com/danog/psalm.git synced 2025-01-22 05:41:20 +01:00
psalm/examples/psalm.default.xml

24 lines
683 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" />
<MixedInferredReturnType errorLevel="suppress" />
<InvalidDocblock errorLevel="info" />
<DeprecatedMethod errorLevel="info" />
<PossiblyUndefinedVariable errorLevel="info">
</issueHandler>
</psalm>