psalm.xml 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  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:///mnt/share/php-u2flib-server/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. <DeprecatedInterface errorLevel="info" />
  21. <MissingClosureReturnType errorLevel="info" />
  22. <MissingReturnType errorLevel="info" />
  23. <MissingPropertyType errorLevel="info" />
  24. <InvalidDocblock errorLevel="info" />
  25. <MisplacedRequiredParam errorLevel="info" />
  26. <PropertyNotSetInConstructor errorLevel="info" />
  27. <MissingConstructor errorLevel="info" />
  28. <MissingClosureParamType errorLevel="info" />
  29. <MissingParamType errorLevel="info" />
  30. <RedundantCondition errorLevel="info" />
  31. <DocblockTypeContradiction errorLevel="suppress" />
  32. <RedundantConditionGivenDocblockType errorLevel="suppress" />
  33. <UnresolvableInclude errorLevel="info" />
  34. <RawObjectIteration errorLevel="info" />
  35. <!-- psalm seems to wrongly complain about this, set the errorLevel to info for now -->
  36. <UndefinedConstant errorLevel="info" />
  37. </issueHandlers>
  38. </psalm>