Skip to content

Commit

Permalink
chore: skip the specific rule
Browse files Browse the repository at this point in the history
  • Loading branch information
kenjis committed Sep 8, 2023
1 parent f75e33d commit 0276d89
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion rector.php
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,6 @@
// is there a file you need to skip?
$rectorConfig->skip([
__DIR__ . '/system/Debug/Toolbar/Views/toolbar.tpl.php',
__DIR__ . '/system/Test/ControllerResponse.php',
__DIR__ . '/system/ThirdParty',
__DIR__ . '/tests/system/Config/fixtures',
__DIR__ . '/tests/system/Filters/fixtures',
Expand All @@ -89,6 +88,8 @@
ConstructClassMethodToSetUpTestCaseRector::class => [
// breaks the constructor
__DIR__ . '/system/Test/TestResponse.php',
// See https://github.com/rectorphp/rector/issues/8188
__DIR__ . '/system/Test/ControllerResponse.php',
],

RemoveUnusedConstructorParamRector::class => [
Expand Down

0 comments on commit 0276d89

Please sign in to comment.