From 31e1be4191356aab1fa0df139eddff0be349fdb9 Mon Sep 17 00:00:00 2001 From: Yassine Guedidi Date: Sat, 5 Apr 2025 17:33:22 +0200 Subject: [PATCH] Add phpstan-baseline target in Makefile --- GNUmakefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/GNUmakefile b/GNUmakefile index acac43dd4..899c0df56 100755 --- a/GNUmakefile +++ b/GNUmakefile @@ -52,6 +52,9 @@ fix-cs: ## Run PHP-CS-Fixer phpstan: ## Run PHPStan @$(PHP_NO_XDEBUG) bin/phpstan analyse +phpstan-baseline: ## Generate PHPStan baseline + @$(PHP_NO_XDEBUG) bin/phpstan analyse --generate-baseline + lint-js: ## Run ESLint @$(YARN) lint:js