1
0
mirror of https://github.com/danog/psalm.git synced 2024-11-30 04:39:00 +01:00

fix(docs): add missing issues to error levels (#4171)

This commit is contained in:
Claas Augner 2020-09-12 17:25:41 +02:00 committed by GitHub
parent ad437c5265
commit 3f8c91a64e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -35,6 +35,7 @@ Level 5 and above allows a more non-verifiable code, and higher levels are even
- [InaccessibleMethod](issues/InaccessibleMethod.md)
- [InaccessibleProperty](issues/InaccessibleProperty.md)
- [InterfaceInstantiation](issues/InterfaceInstantiation.md)
- [InvalidExtendClass](issues/InvalidExtendClass.md)
- [InvalidGlobal](issues/InvalidGlobal.md)
- [InvalidParamDefault](issues/InvalidParamDefault.md)
- [InvalidParent](issues/InvalidParent.md)
@ -42,6 +43,7 @@ Level 5 and above allows a more non-verifiable code, and higher levels are even
- [InvalidScope](issues/InvalidScope.md)
- [InvalidStaticInvocation](issues/InvalidStaticInvocation.md)
- [InvalidThrow](issues/InvalidThrow.md)
- [InvalidTypeImport](issues/InvalidTypeImport.md)
- [LoopInvalidation](issues/LoopInvalidation.md)
- [MethodSignatureMustOmitReturnType](issues/MethodSignatureMustOmitReturnType.md)
- [MissingDependency](issues/MissingDependency.md)
@ -60,6 +62,7 @@ Level 5 and above allows a more non-verifiable code, and higher levels are even
- [OverriddenPropertyAccess](issues/OverriddenPropertyAccess.md)
- [ParadoxicalCondition](issues/ParadoxicalCondition.md)
- [ParentNotFound](issues/ParentNotFound.md)
- [ParseError](issues/ParseError.md)
- [TooFewArguments](issues/TooFewArguments.md)
- [UndefinedClass](issues/UndefinedClass.md)
- [UndefinedConstant](issues/UndefinedConstant.md)
@ -86,6 +89,7 @@ Level 5 and above allows a more non-verifiable code, and higher levels are even
- [MixedArrayOffset](issues/MixedArrayOffset.md)
- [MixedArrayTypeCoercion](issues/MixedArrayTypeCoercion.md)
- [MixedAssignment](issues/MixedAssignment.md)
- [MixedClone](issues/MixedClone.md)
- [MixedFunctionCall](issues/MixedFunctionCall.md)
- [MixedInferredReturnType](issues/MixedInferredReturnType.md)
- [MixedMethodCall](issues/MixedMethodCall.md)
@ -98,6 +102,7 @@ Level 5 and above allows a more non-verifiable code, and higher levels are even
- [MixedStringOffsetAssignment](issues/MixedStringOffsetAssignment.md)
- [MutableDependency](issues/MutableDependency.md)
- [PossiblyNullOperand](issues/PossiblyNullOperand.md)
- [RedundantIdentityWithTrue](issues/RedundantIdentityWithTrue.md)
- [Trace](issues/Trace.md)
- [UndefinedTrace](issues/UndefinedTrace.md)
@ -128,6 +133,7 @@ These issues are treated as errors at level 2 and below.
- [RedundantConditionGivenDocblockType](issues/RedundantConditionGivenDocblockType.md)
- [ReferenceConstraintViolation](issues/ReferenceConstraintViolation.md)
- [UnresolvableInclude](issues/UnresolvableInclude.md)
- [UnsafeInstantiation](issues/UnsafeInstantiation.md)
## Errors ignored at level 4 and higher
@ -183,6 +189,7 @@ These issues are treated as errors at level 4 and below.
- [InternalMethod](issues/InternalMethod.md)
- [InternalProperty](issues/InternalProperty.md)
- [InvalidDocblock](issues/InvalidDocblock.md)
- [InvalidLiteralArgument](issues/InvalidLiteralArgument.md)
- [InvalidOperand](issues/InvalidOperand.md)
- [InvalidScalarArgument](issues/InvalidScalarArgument.md)
- [InvalidToString](issues/InvalidToString.md)
@ -204,6 +211,7 @@ These issues are treated as errors at level 4 and below.
These issues are treated as errors at level 5 and below.
- [ConstructorSignatureMismatch](issues/ConstructorSignatureMismatch.md)
- [FalsableReturnStatement](issues/FalsableReturnStatement.md)
- [InvalidNullableReturnType](issues/InvalidNullableReturnType.md)
- [LessSpecificImplementedReturnType](issues/LessSpecificImplementedReturnType.md)
@ -253,13 +261,17 @@ These issues are treated as errors at level 7 and below.
- [ContinueOutsideLoop](issues/ContinueOutsideLoop.md)
- [MethodSignatureMismatch](issues/MethodSignatureMismatch.md)
- [OverriddenMethodAccess](issues/OverriddenMethodAccess.md)
- [ParamNameMismatch](issues/ParamNameMismatch.md)
- [ReservedWord](issues/ReservedWord.md)
- [UninitializedProperty](issues/UninitializedProperty.md)
- [UnhandledMatchCondition](issues/UnhandledMatchCondition.md)
## Feature-specific errors
- [ForbiddenEcho](issues/ForbiddenEcho.md)
- [ImpurePropertyFetch](issues/ImpurePropertyFetch.md)
- [ImpureVariable](issues/ImpureVariable.md)
- [PossiblyUndefinedIntArrayOffset](issues/PossiblyUndefinedIntArrayOffset.md)
- [PossiblyUndefinedStringArrayOffset](issues/PossiblyUndefinedStringArrayOffset.md)
- [PossiblyUnusedMethod](issues/PossiblyUnusedMethod.md)