psalm.xml 1.6 KB

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