mirror of
https://github.com/rectorphp/rector.git
synced 2025-01-19 06:18:07 +01:00
e79510ae2b
0d55791128
Fix downgrade build: exclude vendor/symplify/easy-parallel/ecs.php on parallel lint (#5584)
11 lines
247 B
PHP
11 lines
247 B
PHP
<?php
|
|
|
|
declare (strict_types=1);
|
|
namespace RectorPrefix202402;
|
|
|
|
use Rector\Config\Level\DeadCodeLevel;
|
|
use Rector\Config\RectorConfig;
|
|
return static function (RectorConfig $rectorConfig) : void {
|
|
$rectorConfig->rules(DeadCodeLevel::RULES);
|
|
};
|