This commit is contained in:
lubiana 2022-10-12 19:46:05 +02:00
parent 83567049a0
commit 36172f251a
8 changed files with 691 additions and 0 deletions

15
rector.php Normal file
View file

@ -0,0 +1,15 @@
<?php declare(strict_types=1);
use Lubiana\CodeQuality\SetList;
use Rector\Config\RectorConfig;
return static function (RectorConfig $c): void {
$c->paths([
__DIR__ . '/src',
__DIR__ . '/config',
__DIR__ . '/rector.php',
__DIR__ . '/ecs.php',
]);
$c->sets([SetList::RECTOR]);
};