mirror of https://github.com/FriendsOfTYPO3/tea.git synced 2024-09-19 23:36:13 +02:00
tea/ec-cli-config.php

18 lines
293 B
PHP
Raw Permalink Normal View History

<?php
declare(strict_types=1);
use Symfony\Component\Finder\Finder;
$finder = new Finder();
$finder
->in(__DIR__)
->notPath('tools')
->notPath('.Build')
->notPath('var')
->notPath('Documentation-GENERATED-temp')
->notName('phpstan-baseline.neon')
;
return $finder;