From e9084664d99c2d4ab6f2635a415169d7d1bc2d2c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=B6ller?= Date: Sat, 17 Feb 2024 16:12:32 +0100 Subject: [PATCH] Fix: Do not bother ignoring non-existent file --- .php-cs-fixer.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.php-cs-fixer.php b/.php-cs-fixer.php index c20f24b447..5bd2771e13 100644 --- a/.php-cs-fixer.php +++ b/.php-cs-fixer.php @@ -9,8 +9,7 @@ ->in([ __DIR__ . '/src', __DIR__ . '/tests', - ]) - ->notName('run-tests.php'); + ]); $config ->setRiskyAllowed(true)