psalm.xml 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. <?xml version="1.0"?>
  2. <psalm
  3. totallyTyped="false"
  4. resolveFromConfigFile="true"
  5. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  6. xmlns="https://getpsalm.org/schema/config"
  7. xsi:schemaLocation="https://getpsalm.org/schema/config vendor/vimeo/psalm/config.xsd"
  8. errorBaseline="psalm-baseline.xml"
  9. >
  10. <projectFiles>
  11. <directory name="src" />
  12. <ignoreFiles>
  13. <directory name="vendor" />
  14. </ignoreFiles>
  15. </projectFiles>
  16. <issueHandlers>
  17. <LessSpecificReturnType errorLevel="info" />
  18. <!-- level 3 issues - slightly lazy code writing, but provably low false-negatives -->
  19. <DeprecatedMethod errorLevel="info" />
  20. <DeprecatedProperty errorLevel="info" />
  21. <DeprecatedClass errorLevel="info" />
  22. <DeprecatedConstant errorLevel="info" />
  23. <DeprecatedFunction errorLevel="info" />
  24. <DeprecatedInterface errorLevel="info" />
  25. <DeprecatedTrait errorLevel="info" />
  26. <InternalMethod errorLevel="info" />
  27. <InternalProperty errorLevel="info" />
  28. <InternalClass errorLevel="info" />
  29. <MissingClosureReturnType errorLevel="info" />
  30. <MissingReturnType errorLevel="info" />
  31. <MissingPropertyType errorLevel="info" />
  32. <InvalidDocblock errorLevel="info" />
  33. <MisplacedRequiredParam errorLevel="info" />
  34. <PropertyNotSetInConstructor errorLevel="info" />
  35. <MissingConstructor errorLevel="info" />
  36. <MissingClosureParamType errorLevel="info" />
  37. <MissingParamType errorLevel="info" />
  38. <RedundantCondition errorLevel="info" />
  39. <DocblockTypeContradiction errorLevel="info" />
  40. <RedundantConditionGivenDocblockType errorLevel="info" />
  41. <UnresolvableInclude errorLevel="info" />
  42. <RawObjectIteration errorLevel="info" />
  43. <InvalidStringClass errorLevel="info" />
  44. </issueHandlers>
  45. </psalm>