forked from Automattic/woocommerce-payments
-
Notifications
You must be signed in to change notification settings - Fork 0
/
psalm.xml
32 lines (31 loc) · 1.14 KB
/
psalm.xml
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
<?xml version="1.0"?>
<psalm
errorLevel="5"
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"
autoloader="psalm-loader.php"
errorBaseline="psalm-baseline.xml"
>
<projectFiles>
<file name="woocommerce-payments.php" />
<directory name="includes" />
<ignoreFiles>
<directory name="client" />
<directory name="docker" />
<directory name="vendor" />
<!-- Not much logic there, but a lot of false-positives -->
<directory name="includes/in-person-payments/templates" />
<!-- There are no stubs yet for Subscriptions, hence analysis is not usable there -->
<directory name="includes/subscriptions" />
<directory name="includes/compat/subscriptions" />
</ignoreFiles>
</projectFiles>
<issueHandlers>
<UndefinedConstant errorLevel="suppress" />
<ParadoxicalCondition errorLevel="suppress" />
<MissingFile errorLevel="suppress" />
<DuplicateClass errorLevel="suppress" />
<InvalidGlobal errorLevel="suppress" />
</issueHandlers>
</psalm>