forked from rectorphp/rector-src
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrector.php
93 lines (78 loc) · 3.38 KB
/
rector.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
<?php
declare(strict_types=1);
use Rector\CodingStyle\Rector\String_\UseClassKeywordForClassNameResolutionRector;
use Rector\Config\RectorConfig;
use Rector\DeadCode\Rector\ConstFetch\RemovePhpVersionIdCheckRector;
use Rector\Naming\Rector\Assign\RenameVariableToMatchMethodCallReturnTypeRector;
use Rector\Naming\Rector\Class_\RenamePropertyToMatchTypeRector;
use Rector\Naming\Rector\ClassMethod\RenameParamToMatchTypeRector;
use Rector\Php55\Rector\String_\StringClassNameToClassConstantRector;
use Rector\PHPUnit\Set\PHPUnitSetList;
use Rector\Set\ValueObject\LevelSetList;
use Rector\Set\ValueObject\SetList;
use Rector\TypeDeclaration\Rector\ClassMethod\AddMethodCallBasedStrictParamTypeRector;
use Rector\TypeDeclaration\Rector\StmtsAwareInterface\DeclareStrictTypesRector;
return static function (RectorConfig $rectorConfig): void {
$rectorConfig->sets([
LevelSetList::UP_TO_PHP_81,
SetList::CODE_QUALITY,
SetList::DEAD_CODE,
SetList::PRIVATIZATION,
SetList::NAMING,
SetList::TYPE_DECLARATION,
SetList::INSTANCEOF,
SetList::EARLY_RETURN,
SetList::CODING_STYLE,
SetList::STRICT_BOOLEANS,
PHPUnitSetList::PHPUNIT_CODE_QUALITY,
PHPUnitSetList::PHPUNIT_100,
]);
$rectorConfig->rules([DeclareStrictTypesRector::class]);
$rectorConfig->paths([
__DIR__ . '/bin',
__DIR__ . '/src',
__DIR__ . '/rules',
__DIR__ . '/rules-tests',
__DIR__ . '/packages',
__DIR__ . '/packages-tests',
__DIR__ . '/tests',
__DIR__ . '/utils',
__DIR__ . '/config',
__DIR__ . '/scoper.php',
__DIR__ . '/build/build-preload.php',
]);
$rectorConfig->importNames();
$rectorConfig->removeUnusedImports();
$rectorConfig->parallel();
$rectorConfig->skip([
RenamePropertyToMatchTypeRector::class => [
__DIR__ . '/src/Console/Command/ListRulesCommand.php',
__DIR__ . '/src/Configuration/ConfigInitializer.php',
],
// resolve later
RenameParamToMatchTypeRector::class => [
__DIR__ . '/src/Console/Command/ListRulesCommand.php',
__DIR__ . '/src/Configuration/ConfigInitializer.php',
__DIR__ . '/src/PhpParser/NodeTraverser/RectorNodeTraverser.php',
],
RenameVariableToMatchMethodCallReturnTypeRector::class => [__DIR__ . '/packages/Config/RectorConfig.php'],
StringClassNameToClassConstantRector::class,
__DIR__ . '/bin/validate-phpstan-version.php',
// tests
'**/Fixture*',
'**/Source*',
'**/Expected*',
// keep configs untouched, as the classes are just strings
UseClassKeywordForClassNameResolutionRector::class => [__DIR__ . '/config', '*/config/*'],
// avoid simplifying itself
\Rector\CodeQuality\Rector\FuncCall\SimplifyRegexPatternRector::class => [
__DIR__ . '/rules/CodeQuality/Rector/FuncCall/SimplifyRegexPatternRector.php',
],
// race condition with stmts aware patch and PHPStan type
AddMethodCallBasedStrictParamTypeRector::class => [
__DIR__ . '/rules/DeadCode/Rector/If_/RemoveUnusedNonEmptyArrayBeforeForeachRector.php',
],
RemovePhpVersionIdCheckRector::class => [__DIR__ . '/src/Util/FileHasher.php'],
]);
$rectorConfig->phpstanConfig(__DIR__ . '/phpstan-for-rector.neon');
};