Browse Source
chore': drop `config/` exclude .php-cs-fixer.dist.php
Signed-off-by: Josh <josh.t.richards@gmail.com>
pull/54822/head
Josh
1 month ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
8 additions and
5 deletions
-
.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); |
|
|
|