mirror of
https://github.com/danog/psalm.git
synced 2024-11-27 12:55:26 +01:00
53 lines
1.9 KiB
XML
53 lines
1.9 KiB
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>
|
||
|
<!-- 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" />
|
||
|
|
||
|
<!-- level 4 issues - points to possible deficiencies in logic, higher false-positives -->
|
||
|
|
||
|
<MoreSpecificReturnType errorLevel="info" />
|
||
|
<TypeCoercion errorLevel="info" />
|
||
|
|
||
|
<PossiblyNullArgument errorLevel="info" />
|
||
|
<PossiblyNullArrayAccess errorLevel="info" />
|
||
|
<PossiblyNullOperand errorLevel="info" />
|
||
|
<PossiblyNullPropertyAssignment errorLevel="info" />
|
||
|
<PossiblyNullPropertyFetch errorLevel="info" />
|
||
|
<PossiblyNullReference errorLevel="info" />
|
||
|
<PossiblyUndefinedVariable errorLevel="info" />
|
||
|
<PossiblyUnusedVariable errorLevel="info" />
|
||
|
|
||
|
<!-- level 5 issues - should be avoided at mosts costs... -->
|
||
|
|
||
|
<FailedTypeResolution errorLevel="info" />
|
||
|
<ForbiddenCode errorLevel="info" />
|
||
|
<ImplicitToStringCast errorLevel="info" />
|
||
|
<InvalidScalarArgument errorLevel="info" />
|
||
|
<InvalidToString errorLevel="info" />
|
||
|
<MethodSignatureMismatch errorLevel="info" />
|
||
|
<NoInterfaceProperties errorLevel="info" />
|
||
|
<TooManyArguments errorLevel="info" />
|
||
|
<TypeDoesNotContainType errorLevel="info" />
|
||
|
</issueHandlers>
|
||
|
</psalm>
|