mirror of
https://github.com/usetrmnl/byos_laravel.git
synced 2026-01-13 06:57:47 +00:00
26 lines
567 B
PHP
26 lines
567 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
use Rector\Config\RectorConfig;
|
|
use Rector\Set\ValueObject\LevelSetList;
|
|
use Rector\Set\ValueObject\SetList;
|
|
|
|
return static function (RectorConfig $rectorConfig): void {
|
|
$rectorConfig->paths([
|
|
__DIR__.'/app',
|
|
__DIR__.'/tests',
|
|
]);
|
|
|
|
$rectorConfig->sets([
|
|
LevelSetList::UP_TO_PHP_82,
|
|
SetList::CODE_QUALITY,
|
|
SetList::DEAD_CODE,
|
|
SetList::EARLY_RETURN,
|
|
SetList::TYPE_DECLARATION,
|
|
]);
|
|
|
|
$rectorConfig->skip([
|
|
// Skip any specific rules if needed
|
|
]);
|
|
};
|