diff options
author | Kate <26026535+provokateurin@users.noreply.github.com> | 2024-08-26 07:40:16 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-08-26 07:40:16 +0200 |
commit | c42412f3d21a85da70a34656f620ea688091fdad (patch) | |
tree | 43500ecf64a41fb2afef062e372a5bf9c793fd7b | |
parent | 23bbb314453e730fe3fc33c9267eaedb35ecfbd0 (diff) | |
parent | ffc8a86d7d14f2a6801baaa53d0514d6bf3a1f82 (diff) | |
download | nextcloud-server-c42412f3d21a85da70a34656f620ea688091fdad.tar.gz nextcloud-server-c42412f3d21a85da70a34656f620ea688091fdad.zip |
Merge pull request #47474 from nextcloud/fix/cs-fixer/ignore-git-ignored-entries
-rw-r--r-- | .php-cs-fixer.dist.php | 32 |
1 files changed, 13 insertions, 19 deletions
diff --git a/.php-cs-fixer.dist.php b/.php-cs-fixer.dist.php index c6ce8bbea34..1cb5dd2f7ce 100644 --- a/.php-cs-fixer.dist.php +++ b/.php-cs-fixer.dist.php @@ -14,29 +14,23 @@ $config = new Config(); $config ->setParallelConfig(ParallelConfigFactory::detect()) ->getFinder() - ->ignoreVCSIgnored(true) ->exclude('config') - ->exclude('data') - ->notPath('3rdparty') - ->notPath('build/integration/vendor') - ->notPath('build/lib') - ->notPath('build/node_modules') - ->notPath('build/stubs') - ->notPath('composer') - ->notPath('node_modules') - ->notPath('vendor') - ->in('apps') + ->exclude('3rdparty') + ->exclude('build/stubs') + ->exclude('composer') ->in(__DIR__); -// Ignore additional app directories -$rootDir = new \DirectoryIterator(__DIR__); -foreach ($rootDir as $node) { - if (str_starts_with($node->getFilename(), 'apps')) { - $return = shell_exec('git check-ignore ' . escapeshellarg($node->getFilename() . '/')); +$ignoredEntries = shell_exec('git status --porcelain --ignored ' . escapeshellarg(__DIR__)); +$ignoredEntries = explode("\n", $ignoredEntries); +$ignoredEntries = array_filter($ignoredEntries, static fn (string $line) => str_starts_with($line, '!! ')); +$ignoredEntries = array_map(static fn (string $line) => substr($line, 3), $ignoredEntries); +$ignoredEntries = array_values($ignoredEntries); - if ($return !== null) { - $config->getFinder()->exclude($node->getFilename()); - } +foreach ($ignoredEntries as $ignoredEntry) { + if (str_ends_with($ignoredEntry, '/')) { + $config->getFinder()->exclude($ignoredEntry); + } else { + $config->getFinder()->notPath($ignoredEntry); } } |