Skip to content

Commit

Permalink
Changes according to the review comments
Browse files Browse the repository at this point in the history
  • Loading branch information
oliverklee committed May 7, 2024
1 parent 2ea2c62 commit ce10ead
Showing 1 changed file with 5 additions and 10 deletions.
15 changes: 5 additions & 10 deletions rector.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@
__DIR__ . '/Classes/',
__DIR__ . '/Configuration/',
__DIR__ . '/Tests/',
__DIR__ . '/ext_emconf.php',
__DIR__ . '/ext_localconf.php',
])
->withPhpVersion(PhpVersion::PHP_74)
->withPhpSets(
Expand Down Expand Up @@ -75,12 +77,10 @@
// https://github.com/sabbelasichon/typo3-rector/blob/main/src/Set/Typo3LevelSetList.php
// https://github.com/sabbelasichon/typo3-rector/blob/main/src/Set/Typo3SetList.php

Typo3SetList::TYPO3_11,
Typo3SetList::CODE_QUALITY,
Typo3SetList::GENERAL,

// Typo3SetList::CODE_QUALITY,
// Typo3SetList::GENERAL,

// Typo3LevelSetList::UP_TO_TYPO3_10,
Typo3LevelSetList::UP_TO_TYPO3_10,
// Typo3LevelSetList::UP_TO_TYPO3_11,
// Typo3LevelSetList::UP_TO_TYPO3_12,

Expand All @@ -101,9 +101,4 @@
ExtEmConfRector::ADDITIONAL_VALUES_TO_BE_REMOVED => [],
])
->withSkip([
// CodeQuality
ExplicitBoolCompareRector::class,
SwitchNegatedTernaryRector::class,
// Strict
DisallowedEmptyRuleFixerRector::class,
]);

0 comments on commit ce10ead

Please sign in to comment.