mirror of
https://github.com/nextcloud/server.git
synced 2025-12-18 15:56:14 -05:00
chore': drop config/ exclude .php-cs-fixer.dist.php
Signed-off-by: Josh <josh.t.richards@gmail.com>
This commit is contained in:
parent
76fddf76f3
commit
98676f3e61
1 changed files with 8 additions and 5 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Reference in a new issue