From 98676f3e61fd02224a2ed1895fadd2cd7dc7f767 Mon Sep 17 00:00:00 2001 From: Josh Date: Tue, 2 Sep 2025 15:21:01 -0400 Subject: [PATCH] chore': drop `config/` exclude .php-cs-fixer.dist.php Signed-off-by: Josh --- .php-cs-fixer.dist.php | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/.php-cs-fixer.dist.php b/.php-cs-fixer.dist.php index 1cb5dd2f7ce..3bef813c9ee 100644 --- a/.php-cs-fixer.dist.php +++ b/.php-cs-fixer.dist.php @@ -14,11 +14,14 @@ $config = new Config(); $config ->setParallelConfig(ParallelConfigFactory::detect()) ->getFinder() - ->exclude('config') - ->exclude('3rdparty') - ->exclude('build/stubs') - ->exclude('composer') - ->in(__DIR__); + ->in(__DIR__) + ->exclude([ + '3rdparty', + 'build/stubs', + 'composer', + ]) +; + $ignoredEntries = shell_exec('git status --porcelain --ignored ' . escapeshellarg(__DIR__)); $ignoredEntries = explode("\n", $ignoredEntries);