-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6429a86
commit 8610ffe
Showing
2 changed files
with
40 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
<?xml version="1.0"?> | ||
<psalm | ||
errorLevel="3" | ||
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" | ||
hideAllErrorsExceptPassedFiles="true" | ||
hideExternalErrors="true" | ||
> | ||
<projectFiles> | ||
<directory name="application" /> | ||
<directory name="library" /> | ||
</projectFiles> | ||
<extraFiles> | ||
<directory name="vendor" /> | ||
</extraFiles> | ||
<issueHandlers> | ||
<UndefinedFunction> | ||
<errorLevel type="suppress"> | ||
<referencedFunction name="t" /> <!-- ignore t() error />--> | ||
<referencedFunction name="mt" /> | ||
<referencedFunction name="mtp" /> | ||
<referencedFunction name="tp" /> | ||
</errorLevel> | ||
</UndefinedFunction> | ||
</issueHandlers> | ||
</psalm> |