-
Notifications
You must be signed in to change notification settings - Fork 1
/
rector.php
61 lines (58 loc) · 2.1 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
<?php
declare(strict_types=1);
use Rector\CodeQuality\Rector\FuncCall\BoolvalToTypeCastRector;
use Rector\CodeQuality\Rector\FuncCall\FloatvalToTypeCastRector;
use Rector\CodeQuality\Rector\FuncCall\IntvalToTypeCastRector;
use Rector\CodeQuality\Rector\FuncCall\StrvalToTypeCastRector;
use Rector\CodingStyle\Rector\Catch_\CatchExceptionNameMatchingTypeRector;
use Rector\CodingStyle\Rector\FuncCall\ArraySpreadInsteadOfArrayMergeRector;
use Rector\CodingStyle\Rector\Stmt\NewlineAfterStatementRector;
use Rector\Config\RectorConfig;
use Rector\EarlyReturn\Rector\If_\ChangeAndIfToEarlyReturnRector;
use Rector\EarlyReturn\Rector\If_\ChangeOrIfContinueToMultiContinueRector;
use Rector\Php74\Rector\Closure\ClosureToArrowFunctionRector;
use Rector\Php81\Rector\Array_\FirstClassCallableRector;
use Rector\Php81\Rector\Property\ReadOnlyPropertyRector;
use Rector\Php82\Rector\Class_\ReadOnlyClassRector;
use Rector\PHPUnit\Set\PHPUnitSetList;
return RectorConfig::configure()
->withParallel()
->withPaths([
__DIR__.'/src',
__DIR__.'/tests',
])
->withImportNames(
importDocBlockNames: false,
removeUnusedImports: true,
)
->withPhpSets()
->withPreparedSets(
deadCode: true,
codingStyle: true,
typeDeclarations: true,
privatization: true,
earlyReturn: true,
strictBooleans: true,
)
->withSets([
PHPUnitSetList::PHPUNIT_80,
PHPUnitSetList::PHPUNIT_90,
PHPUnitSetList::PHPUNIT_100,
])
->withRules([
BoolvalToTypeCastRector::class,
FloatvalToTypeCastRector::class,
IntvalToTypeCastRector::class,
StrvalToTypeCastRector::class,
ReadOnlyClassRector::class,
ReadOnlyPropertyRector::class,
])
->withSkip([
ArraySpreadInsteadOfArrayMergeRector::class,
CatchExceptionNameMatchingTypeRector::class,
ChangeAndIfToEarlyReturnRector::class,
ChangeOrIfContinueToMultiContinueRector::class,
ClosureToArrowFunctionRector::class,
FirstClassCallableRector::class,
NewlineAfterStatementRector::class,
]);