Skip to content

Commit cc6fcf7

Browse files
committed
Let's make the psalm cache local, for better handling
1 parent 8472099 commit cc6fcf7

File tree

3 files changed

+4
-1
lines changed

3 files changed

+4
-1
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,6 @@ nbproject/
1010
composer.phar
1111
phpunit.xml
1212
.php_cs.cache
13+
.psalm.cache/
1314
/build/*
14-
!/build/.gitkeep
15+
!/build/.gitkeep

Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@ clean:
6363
rm -rf build/logs
6464
rm -rf vendor
6565
rm -f .php_cs.cache
66+
rm -rf .psalm.cache
6667

6768
# Output error if not initialised.
6869
check-init:

psalm.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
xsi:schemaLocation="https://getpsalm.org/schema/config vendor/vimeo/psalm/config.xsd"
66
xmlns:xi="http://www.w3.org/2001/XInclude"
77
errorLevel="2"
8+
cacheDirectory=".psalm.cache"
89
reportMixedIssues="false"
910
resolveFromConfigFile="true"
1011
disableSuppressAll="true"

0 commit comments

Comments
 (0)