Skip to content

Commit

Permalink
Remove rules that were never registered (#72)
Browse files Browse the repository at this point in the history
* Remove rules that were never registered

* Update rector.php
  • Loading branch information
zingimmick authored Aug 13, 2024
1 parent 8d5c59d commit a9ed922
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions rector.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,9 @@

declare(strict_types=1);

use Rector\CodingStyle\Rector\PostInc\PostIncDecToPreIncDecRector;
use Rector\Config\RectorConfig;
use Rector\Naming\Rector\Assign\RenameVariableToMatchMethodCallReturnTypeRector;
use Rector\Naming\Rector\ClassMethod\RenameParamToMatchTypeRector;
use Rector\PHPUnit\CodeQuality\Rector\Class_\AddSeeTestAnnotationRector;
use Rector\PHPUnit\Set\PHPUnitSetList;
use Rector\Privatization\Rector\MethodCall\PrivatizeLocalGetterToPropertyRector;
use Rector\Set\ValueObject\LevelSetList;
Expand All @@ -18,9 +16,7 @@
$rectorConfig->skip([
RenameVariableToMatchMethodCallReturnTypeRector::class,
RenameParamToMatchTypeRector::class,
AddSeeTestAnnotationRector::class,
PrivatizeLocalGetterToPropertyRector::class,
PostIncDecToPreIncDecRector::class,
]);
$rectorConfig->paths([__DIR__ . '/src', __DIR__ . '/tests', __DIR__ . '/ecs.php', __DIR__ . '/rector.php']);
};

0 comments on commit a9ed922

Please sign in to comment.