mirror of https://github.com/FriendsOfTYPO3/tea.git synced 2024-09-19 17:56:12 +02:00
tea/ec-cli-config.php
Daniel Siepmann 7d78c8ae5b
[WIP][TASK] Add editor config linting
WIP:
    * Add GitLab and GitHub Jobs

Resolves: #498
2023-11-27 16:36:56 +01:00

17 lines
293 B
PHP

<?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;