From d1bdf2c300f1c0a6ce80e6abcc8ddf6bbf217efd Mon Sep 17 00:00:00 2001 From: Stephan Zeidler Date: Fri, 28 Mar 2025 16:29:34 +0100 Subject: [PATCH] PHPStan: Ignore unmatched ignored errors when using a baseline This is relevant if you have created a baseline and you change/remove a file that had ignored errors. Without the option you would need to recreate the baseline on "every second commit" --- assets/phpstan.neon | 1 + 1 file changed, 1 insertion(+) diff --git a/assets/phpstan.neon b/assets/phpstan.neon index 614d493..9cbb916 100644 --- a/assets/phpstan.neon +++ b/assets/phpstan.neon @@ -12,5 +12,6 @@ parameters: # We can ignore current issues using a baseline. # You create that by running phpstan with the parameter --generate-baseline # and uncomment the following lines. + # reportUnmatchedIgnoredErrors: false # includes: # - phpstan-baseline.neon