psalm.xml 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  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. >
  9. <projectFiles>
  10. <directory name="src" />
  11. <ignoreFiles>
  12. <directory name="vendor" />
  13. </ignoreFiles>
  14. </projectFiles>
  15. <issueHandlers>
  16. <LessSpecificReturnType errorLevel="info" />
  17. <!-- level 3 issues - slightly lazy code writing, but provably low false-negatives -->
  18. <DeprecatedMethod errorLevel="info" />
  19. <DeprecatedProperty errorLevel="info" />
  20. <DeprecatedClass errorLevel="info" />
  21. <DeprecatedConstant errorLevel="info" />
  22. <DeprecatedFunction errorLevel="info" />
  23. <DeprecatedInterface errorLevel="info" />
  24. <DeprecatedTrait errorLevel="info" />
  25. <InternalMethod errorLevel="info" />
  26. <InternalProperty errorLevel="info" />
  27. <InternalClass errorLevel="info" />
  28. <MissingClosureReturnType errorLevel="info" />
  29. <MissingReturnType errorLevel="info" />
  30. <MissingPropertyType errorLevel="info" />
  31. <InvalidDocblock errorLevel="info" />
  32. <MisplacedRequiredParam errorLevel="info" />
  33. <PropertyNotSetInConstructor errorLevel="info" />
  34. <MissingConstructor errorLevel="info" />
  35. <MissingClosureParamType errorLevel="info" />
  36. <MissingParamType errorLevel="info" />
  37. <RedundantCondition errorLevel="info" />
  38. <DocblockTypeContradiction errorLevel="info" />
  39. <RedundantConditionGivenDocblockType errorLevel="info" />
  40. <UnresolvableInclude errorLevel="info" />
  41. <RawObjectIteration errorLevel="info" />
  42. <InvalidStringClass errorLevel="info" />
  43. </issueHandlers>
  44. </psalm>