Do not only filter but exclude paths from search

Signed-off-by: Christian Wolf <github@christianwolf.email>
This commit is contained in:
Christian Wolf 2021-02-27 15:38:41 +01:00
Родитель ff20188a45
Коммит ed6b069ea9
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 9FC3120E932F73F1
1 изменённых файлов: 6 добавлений и 6 удалений

Просмотреть файл

@ -10,13 +10,13 @@ $config = new Config();
$config
->getFinder()
->ignoreVCSIgnored(true)
->notPath('build')
->notPath('l10n')
->exclude('build')
->exclude('l10n')
// ->notPath('lib/Vendor')
->notPath('src')
->notPath('node_modules')
->notPath('vendor')
->notPath('.github')
->exclude('src')
->exclude('node_modules')
->exclude('vendor')
->exclude('.github')
->in(__DIR__);
return $config;