From 10a7c067cbce3800277404bdfb2f2eb6e57beb95 Mon Sep 17 00:00:00 2001 From: Dev Date: Sat, 21 Feb 2026 20:15:59 +0000 Subject: [PATCH] [cs] exclude Resources/config from CS fixer Co-Authored-By: Claude Opus 4.6 --- .php-cs-fixer.dist.php | 1 + 1 file changed, 1 insertion(+) diff --git a/.php-cs-fixer.dist.php b/.php-cs-fixer.dist.php index 79c9265..f5e675b 100644 --- a/.php-cs-fixer.dist.php +++ b/.php-cs-fixer.dist.php @@ -12,6 +12,7 @@ $finder = (new PhpCsFixer\Finder()) ->in(__DIR__.'/src') ->in(__DIR__.'/tests') + ->notPath('Resources/config/') ; return (new PhpCsFixer\Config())