Skip to content

Commit d81fc4f

Browse files
committed
Psalm: Set up to be the most strict settings
1 parent 4c20d3f commit d81fc4f

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

psalm.xml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
<?xml version="1.0"?>
2+
<psalm
3+
totallyTyped="true"
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+
<directory name="src/PHPUnit" />
14+
</ignoreFiles>
15+
</projectFiles>
16+
17+
<issueHandlers>
18+
<MixedAssignment errorLevel="info" />
19+
</issueHandlers>
20+
</psalm>

0 commit comments

Comments
 (0)