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