Skip to content

Commit

Permalink
bump deps
Browse files Browse the repository at this point in the history
  • Loading branch information
TomasVotruba committed Feb 7, 2024
1 parent 9e4cc72 commit 69a21c5
Showing 1 changed file with 7 additions and 25 deletions.
32 changes: 7 additions & 25 deletions rector.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,34 +3,16 @@
declare(strict_types=1);

use Rector\Config\RectorConfig;
use Rector\PHPUnit\Set\PHPUnitSetList;
use Rector\Set\ValueObject\LevelSetList;
use Rector\Set\ValueObject\SetList;

return static function (RectorConfig $rectorConfig): void {
$rectorConfig->sets([
SetList::CODE_QUALITY,
SetList::DEAD_CODE,
// @todo bump to PHP 8.1
LevelSetList::UP_TO_PHP_80,
SetList::CODING_STYLE,
SetList::TYPE_DECLARATION,
SetList::NAMING,
SetList::PRIVATIZATION,
SetList::EARLY_RETURN,
PHPUnitSetList::PHPUNIT_CODE_QUALITY,
]);

$rectorConfig->paths([
return RectorConfig::configure()
->withPreparedSets(codeQuality: true, deadCode: true, codingStyle: true, naming: true, privatization: true, earlyReturn: true)
->withPaths([
__DIR__ . '/config',
__DIR__ . '/src',
__DIR__ . '/tests',
]);

$rectorConfig->importNames();

$rectorConfig->skip([
])
->withImportNames(removeUnusedImports: true)
->withPhpSets()
->withSkip([
'*/Source/*',
'*/Fixture/*',
]);
};

0 comments on commit 69a21c5

Please sign in to comment.