code-quality/rector.php

14 lines
277 B
PHP
Raw Normal View History

2022-10-12 19:46:05 +02:00
<?php declare(strict_types=1);
2022-11-04 11:18:22 +01:00
use Lubiana\CodeQuality\LubiSetList;
2022-10-12 19:46:05 +02:00
use Rector\Config\RectorConfig;
return RectorConfig::configure()
->withPaths([
2022-10-12 19:46:05 +02:00
__DIR__ . '/src',
__DIR__ . '/config',
])
->withSets([LubiSetList::RECTOR])
->withRootFiles()
;