psalm: Disable cache

Signed-off-by: jld3103 <jld3103yt@gmail.com>
This commit is contained in:
jld3103 2023-07-03 11:26:30 +02:00
parent b2f01b72fe
commit ab738a5b81
No known key found for this signature in database
GPG Key ID: 9062417B9E8EB7B3
1 changed files with 3 additions and 3 deletions

View File

@ -47,8 +47,8 @@
"cs:fix": "php-cs-fixer fix",
"cs:check": "php-cs-fixer fix --dry-run --diff",
"lint": "find . -name \\*.php -not -path './lib/composer/*' -not -path './build/stubs/*' -print0 | xargs -0 -n1 php -l",
"psalm": "psalm --threads=$(nproc)",
"psalm:ci": "psalm --threads=1",
"psalm:update-baseline": "psalm --threads=$(nproc) --update-baseline"
"psalm": "psalm --no-cache --threads=$(nproc)",
"psalm:ci": "psalm --no-cache --threads=1",
"psalm:update-baseline": "psalm --no-cache --threads=$(nproc) --update-baseline"
}
}