-
-
Notifications
You must be signed in to change notification settings - Fork 82
Expand file tree
/
Copy pathpsalm.xml
More file actions
48 lines (47 loc) 路 1.52 KB
/
Copy pathpsalm.xml
File metadata and controls
48 lines (47 loc) 路 1.52 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<?xml version="1.0"?>
<psalm
errorLevel="1"
resolveFromConfigFile="true"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="https://getpsalm.org/schema/config"
xsi:schemaLocation="https://getpsalm.org/schema/config vendor/vimeo/psalm/config.xsd"
findUnusedBaselineEntry="true"
findUnusedCode="true"
checkForThrowsDocblock="true"
checkMissingReturnType="true"
strictBinaryOperands="true"
strictEquality="true"
strictInference="true"
strictLiteralTypes="true"
strictMixedTypes="true"
strictNullTypes="true"
strictObjectTypes="true"
strictOperators="true"
strictParamTypes="true"
strictPropertyTypes="true"
strictReturnTypes="true"
strictScalarTypes="true"
strictStringTypes="true"
strictUnionTypes="true"
strictVariableTypes="true"
>
<projectFiles>
<directory name="src"/>
<ignoreFiles>
<directory name="vendor"/>
<directory name="tests"/>
</ignoreFiles>
</projectFiles>
<issueHandlers>
<MissingReturnType errorLevel="info"/>
<MissingParamType errorLevel="info"/>
<MissingPropertyType errorLevel="info"/>
<ClassMustBeFinal errorLevel="suppress"/>
<UnusedClass errorLevel="suppress"/>
<MissingThrowsDocblock errorLevel="suppress"/>
<RedundantCast errorLevel="suppress"/>
<InvalidOperand errorLevel="suppress"/>
<MixedArgument errorLevel="info"/>
<MixedAssignment errorLevel="info"/>
</issueHandlers>
</psalm>